source: trunk/Modules/Network/PageNetwork.pas

Last change on this file was 151, checked in by chronos, 9 months ago
File size: 233 bytes
Line 
1unit PageNetwork;
2
3interface
4
5uses
6 Classes, SysUtils, FileUtil, WebPage, HTTPServer;
7
8type
9 TWebPageNetwork = class(TWebPage)
10 end;
11
12var
13 WebPageNetwork: TWebPageNetwork;
14
15
16implementation
17
18{$R *.lfm}
19
20end.
21
Note: See TracBrowser for help on using the repository browser.