Browse Source

Added FunctionSynthKind property to function to keep what kind of synthesis occurred.

pull/47/merge
triton 12 years ago
parent
commit
d56c50ad5e
  1. 6
      src/AST/Function.cs

6
src/AST/Function.cs

@ -60,6 +60,11 @@ namespace CppSharp.AST
} }
} }
public enum FunctionSynthKind
{
None,
}
public class Function : Declaration, ITypedDecl, IMangledDecl public class Function : Declaration, ITypedDecl, IMangledDecl
{ {
public Function() public Function()
@ -125,6 +130,7 @@ namespace CppSharp.AST
} }
} }
public FunctionSynthKind SynthKind { get; set; }
public string Mangled { get; set; } public string Mangled { get; set; }

Loading…
Cancel
Save