| Revision: | 215 | 
| Committed: | Tue Jun 12 20:31:54 2007 UTC (18 years, 4 months ago) by alloc | 
| Content type: | text/x-pascal | 
| File size: | 384 byte(s) | 
| Log Message: | 
| # | Content | 
|---|---|
| 1 | unit _EmptyFile; | 
| 2 | |
| 3 | interface | 
| 4 | |
| 5 | uses | 
| 6 | _FileTypes; | 
| 7 | |
| 8 | type | 
| 9 | TFile_Empty = class(TFile) | 
| 10 | public | 
| 11 | procedure InitDataFields; override; | 
| 12 | end; | 
| 13 | |
| 14 | implementation | 
| 15 | |
| 16 | uses | 
| 17 | ConnectionManager, Math, Classes, TypeDefs, _DataTypes; | 
| 18 | |
| 19 | procedure TFile_Empty.InitDataFields; | 
| 20 | begin | 
| 21 | inherited; | 
| 22 | FDataFields := TBlock.Create(Self, nil, 0, 'Base', '', nil); | 
| 23 | end; | 
| 24 | |
| 25 | |
| 26 | end. | 
| 27 |