ServerController.pas

<< Click to Display Table of Contents >>

Navigation:  Demos > XI > StandAloneSSL >

ServerController.pas

unit ServerController;

{PUBDIST}

 

interface

 

uses

 SysUtils, Classes, IWServerControllerBase, HTTPApp;

 

type

 TIWServerController = class(TIWServerControllerBase)

 private

 public

 end;

 

implementation

{$R *.dfm}

 

uses

 IWInit;

 

initialization

 TIWServerController.SetServerControllerClass;

 

end.