예제 #1
0
 public static CSInternalArgType AsCSInternalArg(this IDLType type)
 {
     return(new CSInternalArgType(type));
 }
예제 #2
0
 public static CSRetType AsCSRet(this IDLType type)
 {
     return(new CSRetType(type));
 }
예제 #3
0
 public CSInternalArgType(IDLType type) : base(type)
 {
 }
예제 #4
0
 public CSRetType(IDLType type) : base(type)
 {
 }
예제 #5
0
 public static ConvertedType AsMonoArg(this IDLType type)
 {
     return(new MonoArgType(type));
 }
예제 #6
0
 public CSArgType(IDLType type) : base(type)
 {
 }
예제 #7
0
 public static CPPArgType AsCPPArg(this IDLType type)
 {
     return(new CPPArgType(type));
 }
예제 #8
0
 public MonoArgType(IDLType type) : base(type)
 {
 }
예제 #9
0
 public static JSDynamicType AsJSDynamic(this IDLType type)
 {
     return(new JSDynamicType(type));
 }
예제 #10
0
 public CPPType(IDLType type) : base(type)
 {
 }
예제 #11
0
 public static JSArgType AsJSArg(this IDLType type)
 {
     return(new JSArgType(type));
 }
예제 #12
0
 public JSDynamicType(IDLType type) : base(type)
 {
 }
예제 #13
0
 public JSType(IDLType type) : base(type)
 {
 }
예제 #14
0
 public SimpleConvertedType(IDLType type) : base(type)
 {
 }
예제 #15
0
 public ConvertedType(IDLType type)
 {
     Base = type;
 }