Beispiel #1
0
 public StructureBase(Identifier Identifier, StructureBaseFlags Flags = StructureBaseFlags.None)
 {
     this.Base        = Identifier;
     this.Declaration = new CodeString();
     this.Name        = new CodeString();
     this.Offset      = -1;
     this.Flags       = Flags;
 }
Beispiel #2
0
 public StructureBase(CodeString Declaration, CodeString Name = new CodeString(),
                      StructureBaseFlags Flags = StructureBaseFlags.None)
 {
     this.Base        = null;
     this.Declaration = Declaration;
     this.Name        = Name;
     this.Offset      = -1;
     this.Flags       = Flags;
 }