Exemple #1
0
 public static IEnumerable <VerbatimBlockLineComment> GetLines(this VerbatimBlockComment comment)
 {
     for (var x = 0; x < comment.LinesCount; x++)
     {
         var line = comment.getLines((uint)x);
         yield return(line);
     }
 }
Exemple #2
0
 protected VerbatimBlockComment(VerbatimBlockComment.Internal* native, bool isInternalImpl = false)
     : base((CppSharp.Parser.AST.BlockCommandComment.Internal*) native)
 {
 }
Exemple #3
0
 private VerbatimBlockComment(VerbatimBlockComment.Internal native)
     : this(__CopyValue(native))
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Exemple #4
0
 private static VerbatimBlockComment.Internal* __CopyValue(VerbatimBlockComment.Internal native)
 {
     var ret = Marshal.AllocHGlobal(56);
     CppSharp.Parser.AST.VerbatimBlockComment.Internal.cctor_2(ret, new global::System.IntPtr(&native));
     return (VerbatimBlockComment.Internal*) ret;
 }
Exemple #5
0
 public static VerbatimBlockComment __CreateInstance(VerbatimBlockComment.Internal native)
 {
     return new VerbatimBlockComment(native);
 }
Exemple #6
0
 protected VerbatimBlockComment(VerbatimBlockComment.Internal* native, bool skipVTables = false)
     : base((CppSharp.Parser.AST.BlockCommandComment.Internal*) null)
 {
     __PointerAdjustment = 0;
     if (native == null)
         return;
     __Instance = new global::System.IntPtr(native);
 }
Exemple #7
0
 private VerbatimBlockComment(VerbatimBlockComment.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Exemple #8
0
 public static VerbatimBlockComment __CreateInstance(VerbatimBlockComment.Internal native, bool skipVTables = false)
 {
     return new VerbatimBlockComment(native, skipVTables);
 }
 private static void* __CopyValue(VerbatimBlockComment.__Internal native)
 {
     var ret = Marshal.AllocHGlobal(36);
     global::CppSharp.Parser.AST.VerbatimBlockComment.__Internal.cctor_1(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
Exemple #10
0
 public bool VisitVerbatimBlock(VerbatimBlockComment comment)
 {
     return(true);
 }
Exemple #11
0
 public bool VisitVerbatimBlock(VerbatimBlockComment comment) => true;