source: trunk/IDE/Forms/UFormCodeTree.pas@ 66

Last change on this file since 66 was 45, checked in by chronos, 13 years ago
  • Modified: Forms renamed to names with Form prefix.
File size: 405 bytes
Line 
1unit UFormCodeTree;
2
3{$mode Delphi}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls;
9
10type
11
12 { TFormCodeTree }
13
14 TFormCodeTree = class(TForm)
15 TreeView1: TTreeView;
16 private
17 { private declarations }
18 public
19 { public declarations }
20 end;
21
22var
23 FormCodeTree: TFormCodeTree;
24
25implementation
26
27{$R *.lfm}
28
29end.
30
Note: See TracBrowser for help on using the repository browser.