|
<< Click to Display Table of Contents >> Navigation: Demos > XI > Guess > ServerController.pas |
unit ServerController;
interface
uses
SysUtils, Classes, Forms,
IWServerControllerBase;
type
TIWServerController = class(TIWServerControllerBase)
private
public
end;
implementation
{$R *.dfm}
initialization
TIWServerController.SetServerControllerClass;
end.