Beispiel #1
0
        public override AST.Type VisitDecayed(DecayedType type)
        {
            throw new NotImplementedException();
            var _type = new CppSharp.AST.DecayedType();

            VisitType(type, _type);
            return(_type);
        }
Beispiel #2
0
 public DecayedTypeWrapper(CppSharp.AST.Type rawType)
 {
     this.rawType = rawType;
     type = rawType as CppSharp.AST.DecayedType;
 }
Beispiel #3
0
 public DecayedTypeWrapper(CppSharp.AST.Type rawType)
 {
     this.rawType = rawType;
     type         = rawType as CppSharp.AST.DecayedType;
 }