Revision: | 236 |
Committed: | Fri Jul 13 23:15:47 2007 UTC (18 years, 3 months ago) by alloc |
Content type: | text/x-pascal |
File size: | 380 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, 'Base', '', []); |
23 | end; |
24 | |
25 | |
26 | end. |
27 |