|
|
|
@ -13017,6 +13017,7 @@ namespace CppSharp |
|
|
|
internal uint position; |
|
|
|
internal uint position; |
|
|
|
internal byte isPackExpansion; |
|
|
|
internal byte isPackExpansion; |
|
|
|
internal byte isExpandedParameterPack; |
|
|
|
internal byte isExpandedParameterPack; |
|
|
|
|
|
|
|
internal global::CppSharp.Parser.AST.QualifiedType.__Internal type; |
|
|
|
|
|
|
|
|
|
|
|
[SuppressUnmanagedCodeSecurity, DllImport("CppSharp.CppParser.dll", EntryPoint = "??0NonTypeTemplateParameter@AST@CppParser@CppSharp@@QAE@XZ", CallingConvention = __CallingConvention.ThisCall)] |
|
|
|
[SuppressUnmanagedCodeSecurity, DllImport("CppSharp.CppParser.dll", EntryPoint = "??0NonTypeTemplateParameter@AST@CppParser@CppSharp@@QAE@XZ", CallingConvention = __CallingConvention.ThisCall)] |
|
|
|
internal static extern __IntPtr ctor(__IntPtr __instance); |
|
|
|
internal static extern __IntPtr ctor(__IntPtr __instance); |
|
|
|
@ -13171,6 +13172,21 @@ namespace CppSharp |
|
|
|
((__Internal*)__Instance)->isExpandedParameterPack = (byte) (value ? 1 : 0); |
|
|
|
((__Internal*)__Instance)->isExpandedParameterPack = (byte) (value ? 1 : 0); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public global::CppSharp.Parser.AST.QualifiedType Type |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
get |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return global::CppSharp.Parser.AST.QualifiedType.__CreateInstance(new __IntPtr(&((__Internal*)__Instance)->type)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (ReferenceEquals(value, null)) |
|
|
|
|
|
|
|
throw new global::System.ArgumentNullException("value", "Cannot be null because it is passed by value."); |
|
|
|
|
|
|
|
((__Internal*)__Instance)->type = *(global::CppSharp.Parser.AST.QualifiedType.__Internal*) value.__Instance; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public unsafe partial class ClassTemplate : global::CppSharp.Parser.AST.Template, IDisposable |
|
|
|
public unsafe partial class ClassTemplate : global::CppSharp.Parser.AST.Template, IDisposable |
|
|
|
|