source: trunk/Forms/FormTerminal.pas

Last change on this file was 60, checked in by chronos, 6 weeks ago
  • Modified: Remove U prefix from unit names.
File size: 345 bytes
Line 
1unit FormTerminal;
2
3interface
4
5uses
6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
7
8type
9
10 { TFormTerminal }
11
12 TFormTerminal = class(TForm)
13 Memo1: TMemo;
14 private
15 { private declarations }
16 public
17 { public declarations }
18 end;
19
20var
21 FormTerminal: TFormTerminal;
22
23
24implementation
25
26{$R *.lfm}
27
28end.
29
Note: See TracBrowser for help on using the repository browser.