|
Last change
on this file was 75, checked in by chronos, 19 months ago |
- Modified: Removed U prefix from unit names.
- Modified: Updated Common package.
|
|
File size:
318 bytes
|
| Line | |
|---|
| 1 | unit FormCodeTree;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls;
|
|---|
| 7 |
|
|---|
| 8 | type
|
|---|
| 9 |
|
|---|
| 10 | { TFormCodeTree }
|
|---|
| 11 |
|
|---|
| 12 | TFormCodeTree = class(TForm)
|
|---|
| 13 | TreeView1: TTreeView;
|
|---|
| 14 | private
|
|---|
| 15 | { private declarations }
|
|---|
| 16 | public
|
|---|
| 17 | { public declarations }
|
|---|
| 18 | end;
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | implementation
|
|---|
| 22 |
|
|---|
| 23 | {$R *.lfm}
|
|---|
| 24 |
|
|---|
| 25 | end.
|
|---|
| 26 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.