예제 #1
0
 public VarDesc(string name)
 {
     this.name = name;
     this.type = new TypeRef("Void", true);
 }
예제 #2
0
 public void AddBaseInterface(TypeRef t)
 {
     basetypes.Add(t);
 }
예제 #3
0
 public VarDesc(string name, TypeRef type)
 {
     this.name = name;
     this.type = type;
 }