public MachineIntegerInfoRecord(SavFile file)
 {
     this.File = file;
 }
 public MachineFloatingPointInfoRecord(SavFile file)
 {
     this.File = file;
 }
Exemple #3
0
 public DocumentRecord(SavFile file)
 {
     this.RecordType = RecordType.DocumentRecord;
     this.File       = file;
 }
Exemple #4
0
 public VariableRecord(SavFile file)
 {
     this.RecordType = RecordType.VariableRecord;
     this.File       = file;
 }
Exemple #5
0
 public ValueLabelsRecord(SavFile file)
 {
     this.RecordType = RecordType.ValueLabelRecord;
     this.File       = file;
 }
 public VeryLongStringRecord(SavFile file)
 {
     this.File = file;
 }
 public VariableDisplayParameterRecord(SavFile file)
 {
     this.File = file;
 }
Exemple #8
0
 public LongVariableNamesRecord(SavFile file)
 {
     this.Records = file;
 }
Exemple #9
0
 public MultipleResponseSetsRecord(SavFile file)
 {
     this.File = file;
 }
Exemple #10
0
 public InfoRecord(SavFile file)
 {
     this.RecordType = RecordType.InfoRecord;
     this.File       = file;
 }
Exemple #11
0
        }                                    // left over command bytes, that either were read from the stream, but belong to the next data record or were passed from the previous data record for processing

        public DataRecord(SavFile file)
        {
            this.File   = file;
            this.Values = new byte[file.VariableRecords.Count][];
        }
 public FileHeaderRecord(SavFile file)
 {
     this.File       = file;
     this.RecordType = RecordType.FileHeaderRecord;
 }