source: branches/test1/Server/UFormMain.pas

Last change on this file was 54, checked in by chronos, 12 years ago
  • Added: ChronisAppServer base project.
  • Modified: Changes in client virtual database layer handling.
File size: 396 bytes
Line 
1unit UFormMain;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, IdHTTPServer;
9
10type
11
12 { TFormMain }
13
14 TFormMain = class(TForm)
15 IdHTTPServer1: TIdHTTPServer;
16 private
17 { private declarations }
18 public
19 { public declarations }
20 end;
21
22var
23 FormMain: TFormMain;
24
25implementation
26
27{$R *.lfm}
28
29end.
30
Note: See TracBrowser for help on using the repository browser.