source: trunk/IDE/Forms/FormCodeTree.pas

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 318 bytes
Line 
1unit FormCodeTree;
2
3interface
4
5uses
6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls;
7
8type
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
21implementation
22
23{$R *.lfm}
24
25end.
26
Note: See TracBrowser for help on using the repository browser.