コード例 #1
0
ファイル: StmtVisitor.cs プロジェクト: tornado12345/CppSharp
        public virtual bool VisitCXXConstCastExpr(CXXConstCastExpr stmt)
        {
            if (!VisitCXXNamedCastExpr(stmt))
            {
                return(false);
            }

            return(true);
        }
コード例 #2
0
 public bool VisitCXXConstCastExpr(CXXConstCastExpr stmt)
 {
     throw new NotImplementedException();
 }