|
|
|
@ -538,7 +538,7 @@ namespace CppSharp
@@ -538,7 +538,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Type = value == (CppSharp.Parser.AST.Type) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Type = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -641,7 +641,7 @@ namespace CppSharp
@@ -641,7 +641,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Declaration = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Declaration = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -887,7 +887,7 @@ namespace CppSharp
@@ -887,7 +887,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addParameters(CppSharp.Parser.AST.Parameter s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Parameter) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addParameters_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1221,7 +1221,7 @@ namespace CppSharp
@@ -1221,7 +1221,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Declaration = value == (CppSharp.Parser.AST.TypedefDecl) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Declaration = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1590,7 +1590,7 @@ namespace CppSharp
@@ -1590,7 +1590,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Declaration = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Declaration = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1719,7 +1719,7 @@ namespace CppSharp
@@ -1719,7 +1719,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addArguments(CppSharp.Parser.AST.TemplateArgument s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TemplateArgument) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addArguments_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1748,7 +1748,7 @@ namespace CppSharp
@@ -1748,7 +1748,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Template = value == (CppSharp.Parser.AST.Template) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Template = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1763,7 +1763,7 @@ namespace CppSharp
@@ -1763,7 +1763,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Desugared = value == (CppSharp.Parser.AST.Type) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Desugared = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1869,12 +1869,21 @@ namespace CppSharp
@@ -1869,12 +1869,21 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public static bool operator ==(CppSharp.Parser.AST.TemplateParameter __op, CppSharp.Parser.AST.TemplateParameter param) |
|
|
|
|
{ |
|
|
|
|
var arg0 = __op == (CppSharp.Parser.AST.TemplateParameter) null ? global::System.IntPtr.Zero : __op.__Instance; |
|
|
|
|
var arg1 = param == (CppSharp.Parser.AST.TemplateParameter) null ? global::System.IntPtr.Zero : param.__Instance; |
|
|
|
|
var __ret = Internal.OperatorEqualEqual_0(__op.__Instance, arg1); |
|
|
|
|
bool __opNull = ReferenceEquals(__op, null); |
|
|
|
|
bool paramNull = ReferenceEquals(param, null); |
|
|
|
|
if (__opNull || paramNull) |
|
|
|
|
return __opNull && paramNull; |
|
|
|
|
var arg0 = __op.__Instance; |
|
|
|
|
var arg1 = param.__Instance; |
|
|
|
|
var __ret = Internal.OperatorEqualEqual_0(arg0, arg1); |
|
|
|
|
return __ret; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj) |
|
|
|
|
{ |
|
|
|
|
return this == obj as TemplateParameter; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public string Name |
|
|
|
|
{ |
|
|
|
|
get |
|
|
|
@ -2229,7 +2238,7 @@ namespace CppSharp
@@ -2229,7 +2238,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->TemplateSpecialization = value == (CppSharp.Parser.AST.TemplateSpecializationType) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->TemplateSpecialization = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2244,7 +2253,7 @@ namespace CppSharp
@@ -2244,7 +2253,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Class = value == (CppSharp.Parser.AST.Class) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Class = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2596,7 +2605,7 @@ namespace CppSharp
@@ -2596,7 +2605,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Declaration = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Declaration = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2705,7 +2714,7 @@ namespace CppSharp
@@ -2705,7 +2714,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addComponents(CppSharp.Parser.AST.VTableComponent s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.VTableComponent) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addComponents_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2997,7 +3006,7 @@ namespace CppSharp
@@ -2997,7 +3006,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addVFTables(CppSharp.Parser.AST.VFTableInfo s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.VFTableInfo) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addVFTables_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3276,7 +3285,7 @@ namespace CppSharp
@@ -3276,7 +3285,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addPreprocessedEntities(CppSharp.Parser.AST.PreprocessedEntity s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.PreprocessedEntity) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addPreprocessedEntities_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3369,7 +3378,7 @@ namespace CppSharp
@@ -3369,7 +3378,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->_Namespace = value == (CppSharp.Parser.AST.DeclarationContext) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->_Namespace = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3399,7 +3408,7 @@ namespace CppSharp
@@ -3399,7 +3408,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Comment = value == (CppSharp.Parser.AST.RawComment) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Comment = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3444,7 +3453,7 @@ namespace CppSharp
@@ -3444,7 +3453,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->CompleteDeclaration = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->CompleteDeclaration = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3730,7 +3739,7 @@ namespace CppSharp
@@ -3730,7 +3739,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addNamespaces(CppSharp.Parser.AST.Namespace s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Namespace) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addNamespaces_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3748,7 +3757,7 @@ namespace CppSharp
@@ -3748,7 +3757,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addEnums(CppSharp.Parser.AST.Enumeration s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Enumeration) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addEnums_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3766,7 +3775,7 @@ namespace CppSharp
@@ -3766,7 +3775,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addFunctions(CppSharp.Parser.AST.Function s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Function) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addFunctions_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3784,7 +3793,7 @@ namespace CppSharp
@@ -3784,7 +3793,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addClasses(CppSharp.Parser.AST.Class s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Class) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addClasses_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3802,7 +3811,7 @@ namespace CppSharp
@@ -3802,7 +3811,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addTemplates(CppSharp.Parser.AST.Template s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Template) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addTemplates_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3820,7 +3829,7 @@ namespace CppSharp
@@ -3820,7 +3829,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addTypedefs(CppSharp.Parser.AST.TypedefDecl s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TypedefDecl) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addTypedefs_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3838,7 +3847,7 @@ namespace CppSharp
@@ -3838,7 +3847,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addVariables(CppSharp.Parser.AST.Variable s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Variable) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addVariables_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -4165,7 +4174,7 @@ namespace CppSharp
@@ -4165,7 +4174,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Decl = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Decl = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -4245,7 +4254,7 @@ namespace CppSharp
@@ -4245,7 +4254,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Subexpression = value == (CppSharp.Parser.AST.Expression) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Subexpression = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -4434,7 +4443,7 @@ namespace CppSharp
@@ -4434,7 +4443,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->DefaultArgument = value == (CppSharp.Parser.AST.Expression) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->DefaultArgument = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -4616,7 +4625,7 @@ namespace CppSharp
@@ -4616,7 +4625,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addParameters(CppSharp.Parser.AST.Parameter s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Parameter) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addParameters_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -4814,7 +4823,7 @@ namespace CppSharp
@@ -4814,7 +4823,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->SpecializationInfo = value == (CppSharp.Parser.AST.FunctionTemplateSpecialization) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->SpecializationInfo = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -4994,7 +5003,7 @@ namespace CppSharp
@@ -4994,7 +5003,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->AccessDecl = value == (CppSharp.Parser.AST.AccessSpecifierDecl) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->AccessDecl = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -5455,7 +5464,7 @@ namespace CppSharp
@@ -5455,7 +5464,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addItems(CppSharp.Parser.AST.Enumeration.Item s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Enumeration.Item) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addItems_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -5499,7 +5508,7 @@ namespace CppSharp
@@ -5499,7 +5508,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Type = value == (CppSharp.Parser.AST.Type) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Type = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -5514,7 +5523,7 @@ namespace CppSharp
@@ -5514,7 +5523,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->BuiltinType = value == (CppSharp.Parser.AST.BuiltinType) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->BuiltinType = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -5782,7 +5791,7 @@ namespace CppSharp
@@ -5782,7 +5791,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Type = value == (CppSharp.Parser.AST.Type) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Type = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -5935,7 +5944,7 @@ namespace CppSharp
@@ -5935,7 +5944,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Class = value == (CppSharp.Parser.AST.Class) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Class = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -6259,7 +6268,7 @@ namespace CppSharp
@@ -6259,7 +6268,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addBases(CppSharp.Parser.AST.BaseClassSpecifier s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.BaseClassSpecifier) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addBases_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6277,7 +6286,7 @@ namespace CppSharp
@@ -6277,7 +6286,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addFields(CppSharp.Parser.AST.Field s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Field) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addFields_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6295,7 +6304,7 @@ namespace CppSharp
@@ -6295,7 +6304,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addMethods(CppSharp.Parser.AST.Method s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.Method) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addMethods_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6313,7 +6322,7 @@ namespace CppSharp
@@ -6313,7 +6322,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addSpecifiers(CppSharp.Parser.AST.AccessSpecifierDecl s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.AccessSpecifierDecl) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addSpecifiers_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6504,7 +6513,7 @@ namespace CppSharp
@@ -6504,7 +6513,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Layout = value == (CppSharp.Parser.AST.ClassLayout) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Layout = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -6653,7 +6662,7 @@ namespace CppSharp
@@ -6653,7 +6662,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addParameters(CppSharp.Parser.AST.TemplateParameter s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TemplateParameter) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addParameters_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6682,7 +6691,7 @@ namespace CppSharp
@@ -6682,7 +6691,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->TemplatedDecl = value == (CppSharp.Parser.AST.Declaration) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->TemplatedDecl = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -6817,7 +6826,7 @@ namespace CppSharp
@@ -6817,7 +6826,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addSpecializations(CppSharp.Parser.AST.ClassTemplateSpecialization s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.ClassTemplateSpecialization) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addSpecializations_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7002,7 +7011,7 @@ namespace CppSharp
@@ -7002,7 +7011,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addArguments(CppSharp.Parser.AST.TemplateArgument s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TemplateArgument) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addArguments_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7031,7 +7040,7 @@ namespace CppSharp
@@ -7031,7 +7040,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->TemplatedDecl = value == (CppSharp.Parser.AST.ClassTemplate) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->TemplatedDecl = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7319,7 +7328,7 @@ namespace CppSharp
@@ -7319,7 +7328,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addSpecializations(CppSharp.Parser.AST.FunctionTemplateSpecialization s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.FunctionTemplateSpecialization) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addSpecializations_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7451,7 +7460,7 @@ namespace CppSharp
@@ -7451,7 +7460,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addArguments(CppSharp.Parser.AST.TemplateArgument s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TemplateArgument) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addArguments_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7480,7 +7489,7 @@ namespace CppSharp
@@ -7480,7 +7489,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Template = value == (CppSharp.Parser.AST.FunctionTemplate) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Template = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7495,7 +7504,7 @@ namespace CppSharp
@@ -7495,7 +7504,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->SpecializedFunction = value == (CppSharp.Parser.AST.Function) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->SpecializedFunction = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -8023,7 +8032,7 @@ namespace CppSharp
@@ -8023,7 +8032,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->Definition = value == (CppSharp.Parser.AST.MacroDefinition) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->Definition = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -8174,7 +8183,7 @@ namespace CppSharp
@@ -8174,7 +8183,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addMacros(CppSharp.Parser.AST.MacroDefinition s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.MacroDefinition) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addMacros_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -8546,7 +8555,7 @@ namespace CppSharp
@@ -8546,7 +8555,7 @@ namespace CppSharp
|
|
|
|
|
|
|
|
|
|
public void addTranslationUnits(CppSharp.Parser.AST.TranslationUnit s) |
|
|
|
|
{ |
|
|
|
|
var arg0 = s == (CppSharp.Parser.AST.TranslationUnit) null ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance; |
|
|
|
|
Internal.addTranslationUnits_0(__Instance, arg0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -8882,7 +8891,7 @@ namespace CppSharp
@@ -8882,7 +8891,7 @@ namespace CppSharp
|
|
|
|
|
set |
|
|
|
|
{ |
|
|
|
|
var __ptr = (Internal*)__Instance.ToPointer(); |
|
|
|
|
__ptr->FullCommentBlock = value == (CppSharp.Parser.AST.FullComment) null ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
__ptr->FullCommentBlock = ReferenceEquals(value, null) ? global::System.IntPtr.Zero : value.__Instance; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|