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