示例#1
0
文件: AST.cs 项目: RainsSoft/CppSharp
 private static TemplateParameterSubstitutionType.Internal* __CopyValue(TemplateParameterSubstitutionType.Internal native)
 {
     var ret = Marshal.AllocHGlobal(24);
     CppSharp.Parser.AST.TemplateParameterSubstitutionType.Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return (TemplateParameterSubstitutionType.Internal*) ret;
 }
示例#2
0
文件: AST.cs 项目: CSRedRat/CppSharp
 protected TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal* native, bool skipVTables = false)
     : base((CppSharp.Parser.AST.Type.Internal*) null)
 {
     __PointerAdjustment = 0;
     if (native == null)
         return;
     __Instance = new global::System.IntPtr(native);
 }
示例#3
0
文件: AST.cs 项目: RainsSoft/CppSharp
 public static TemplateParameterSubstitutionType __CreateInstance(TemplateParameterSubstitutionType.Internal native)
 {
     return new TemplateParameterSubstitutionType(native);
 }
示例#4
0
 private TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.__Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
示例#5
0
文件: AST.cs 项目: CSRedRat/CppSharp
 public static TemplateParameterSubstitutionType __CreateInstance(TemplateParameterSubstitutionType.Internal native, bool skipVTables = false)
 {
     return new TemplateParameterSubstitutionType(native, skipVTables);
 }
 public bool VisitTemplateParameterSubstitutionType(TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     return(false);
 }
示例#7
0
 private static void* __CopyValue(TemplateParameterSubstitutionType.__Internal native)
 {
     var ret = Marshal.AllocHGlobal(16);
     global::CppSharp.Parser.AST.TemplateParameterSubstitutionType.__Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
示例#8
0
 private TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
     : this(__CopyValue(native))
 {
     __ownsNativeInstance = true;
 }
示例#9
0
文件: AST.cs 项目: kidleon/CppSharp
 internal TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal* native)
     : this(new global::System.IntPtr(native))
 {
 }
示例#10
0
 public virtual TypePrinterResult VisitTemplateParameterSubstitutionType(
     TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     throw new NotImplementedException();
 }
示例#11
0
文件: AST.cs 项目: vovkasm/CppSharp
 internal TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
     : this(__CopyValue(native))
 {
 }
示例#12
0
 public override TypePrinterResult VisitTemplateParameterSubstitutionType(
     TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     return(param.Replacement.Visit(this));
 }
示例#13
0
 public override bool VisitTemplateParameterSubstitutionType(TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     Context.Return.Write("({0}) (object) ", param.ReplacedParameter.Parameter.Name);
     return(base.VisitTemplateParameterSubstitutionType(param, quals));
 }
示例#14
0
 public bool VisitTemplateParameterSubstitutionType(TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     throw new NotImplementedException();
 }
示例#15
0
文件: AST.cs 项目: RainsSoft/CppSharp
 private TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
     : this(__CopyValue(native))
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
示例#16
0
文件: AST.cs 项目: kidleon/CppSharp
 internal TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal native)
     : this(&native)
 {
 }
示例#17
0
文件: AST.cs 项目: RainsSoft/CppSharp
 protected TemplateParameterSubstitutionType(TemplateParameterSubstitutionType.Internal* native, bool isInternalImpl = false)
     : base((CppSharp.Parser.AST.Type.Internal*) native)
 {
 }
示例#18
0
 public string VisitTemplateParameterSubstitutionType(
     TemplateParameterSubstitutionType param, TypeQualifiers quals)
 {
     return(param.Replacement.Visit(this));
 }