git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@2 b6239004-a887-0f4b-9937-50029ccdca16
29 lines
508 B
ObjectPascal
29 lines
508 B
ObjectPascal
unit fServerForm;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Types, Classes, Variants,
|
|
QTypes, QGraphics, QControls, QForms, QDialogs, QStdCtrls,
|
|
uROClient, uROPoweredByRemObjectsButton, uROClientIntf, uROServer,
|
|
$MESSAGEUNIT, $SERVERUNIT;
|
|
|
|
type
|
|
TServerForm = class(TForm)
|
|
ROMessage: TRO$MSGCLSNAME;
|
|
ROServer: TRO$SRVCLSNAME;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
ServerForm: TServerForm;
|
|
|
|
implementation
|
|
|
|
{$R *.xfm}
|
|
|
|
end.
|