Exemplo n.º 1
0
 internal IntegerType(string name, uint size, bool unsigned, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
     this.unsigned = unsigned;
 }
Exemplo n.º 2
0
 internal IntegerType(string name, uint size, bool unsigned, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name     = name;
     this.size     = size;
     this.unsigned = unsigned;
 }
Exemplo n.º 3
0
 public FloatType(string name, uint size, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
 }
Exemplo n.º 4
0
 public FloatType(string name, uint size, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
 }
Exemplo n.º 5
0
 internal PrimitiveType(PrimitiveTypeId primitiveId)
 {
     this.primitiveId = primitiveId;
 }
Exemplo n.º 6
0
 internal PrimitiveType(PrimitiveTypeId primitiveId)
 {
     this.primitiveId = primitiveId;
 }