コード例 #1
0
ファイル: ASTConverter.cs プロジェクト: gpetrou/CppSharp
        public override AST.Type VisitTypedef(TypedefType type)
        {
            var _type = new CppSharp.AST.TypedefType();

            VisitType(type, _type);
            _type.Declaration = declConverter.Visit(type.Declaration)
                                as AST.TypedefDecl;
            return(_type);
        }
コード例 #2
0
ファイル: TypeHeloer.cs プロジェクト: crazyender/FFMPEG.net
 public TypedefTypeWrapper(CppSharp.AST.Type rawType)
 {
     this.rawType = rawType;
     type = rawType as CppSharp.AST.TypedefType;
 }
コード例 #3
0
 public TypedefTypeWrapper(CppSharp.AST.Type rawType)
 {
     this.rawType = rawType;
     type         = rawType as CppSharp.AST.TypedefType;
 }