| 7 |
|
|
| 8 |
|
type |
| 9 |
|
TFile_Empty = class(TFile) |
| 10 |
– |
protected |
| 11 |
– |
procedure InitDatLinks; override; |
| 12 |
– |
procedure InitRawList; override; |
| 10 |
|
public |
| 11 |
|
procedure InitDataFields; override; |
| 12 |
|
end; |
| 19 |
|
procedure TFile_Empty.InitDataFields; |
| 20 |
|
begin |
| 21 |
|
inherited; |
| 22 |
< |
FDataFields := TBlock.Create(Self, nil, 0, 'Base', '', nil); |
| 22 |
> |
FDataFields := TBlock.Create(Self, nil, 'Base', '', []); |
| 23 |
|
end; |
| 24 |
|
|
| 25 |
|
|
| 29 |
– |
procedure TFile_Empty.InitDatLinks; |
| 30 |
– |
begin |
| 31 |
– |
SetLength(FDatLinks, 0); |
| 32 |
– |
end; |
| 33 |
– |
|
| 34 |
– |
|
| 35 |
– |
procedure TFile_Empty.InitRawList; |
| 36 |
– |
begin |
| 37 |
– |
SetLength(FRawParts, 0); |
| 38 |
– |
end; |
| 39 |
– |
|
| 26 |
|
end. |
| 27 |
|
|