Esempio n. 1
0
 public static IEnumerable <InlineCommandComment.Argument> GetArguments(this InlineCommandComment comment)
 {
     for (var x = 0; x < comment.ArgumentsCount; x++)
     {
         var argument = comment.getArguments((uint)x);
         yield return(argument);
     }
 }
Esempio n. 2
0
 protected InlineCommandComment(InlineCommandComment.Internal* native, bool isInternalImpl = false)
     : base((CppSharp.Parser.AST.InlineContentComment.Internal*) native)
 {
 }
Esempio n. 3
0
 private InlineCommandComment(InlineCommandComment.Internal native)
     : this(__CopyValue(native))
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Esempio n. 4
0
 private static InlineCommandComment.Internal* __CopyValue(InlineCommandComment.Internal native)
 {
     var ret = Marshal.AllocHGlobal(32);
     CppSharp.Parser.AST.InlineCommandComment.Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return (InlineCommandComment.Internal*) ret;
 }
Esempio n. 5
0
 public static InlineCommandComment __CreateInstance(InlineCommandComment.Internal native)
 {
     return new InlineCommandComment(native);
 }
Esempio n. 6
0
 protected InlineCommandComment(InlineCommandComment.Internal* native, bool skipVTables = false)
     : base((CppSharp.Parser.AST.InlineContentComment.Internal*) null)
 {
     __PointerAdjustment = 0;
     if (native == null)
         return;
     __Instance = new global::System.IntPtr(native);
 }
Esempio n. 7
0
 private InlineCommandComment(InlineCommandComment.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Esempio n. 8
0
 public static InlineCommandComment __CreateInstance(InlineCommandComment.Internal native, bool skipVTables = false)
 {
     return new InlineCommandComment(native, skipVTables);
 }
Esempio n. 9
0
 private static void* __CopyValue(InlineCommandComment.__Internal native)
 {
     var ret = Marshal.AllocHGlobal(28);
     global::CppSharp.Parser.AST.InlineCommandComment.__Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
Esempio n. 10
0
 public bool VisitInlineCommand(InlineCommandComment comment)
 {
     return(true);
 }
Esempio n. 11
0
 public bool VisitInlineCommand(InlineCommandComment comment) => true;