예제 #1
0
        public unsafe VerbatimBlockLineComment(Comment owningComment, CppSharp.Parser.AST.VerbatimBlockLineComment line) : base(line)
        {
            this.OwningComment = owningComment;
            this.line          = line;

            this.OwningComment.AssertNotNull();
            this.line.AssertNotNullAndOfType <CppSharp.Parser.AST.VerbatimBlockLineComment>();
        }
예제 #2
0
 public unsafe VerbatimBlockLineComment(CppSharp.Parser.AST.VerbatimBlockLineComment line) : base(line)
 {
     this.line = line;
 }