Componentes.Terceros.RemObj.../official/5.0.23.613/RemObjects SDK for Delphi/Samples/Class Factories/ClassFactoryClient.dpr

15 lines
358 B
ObjectPascal

program ClassFactoryClient;
uses
Forms,
ClassFactoryClientMain in 'ClassFactoryClientMain.pas' {ClassFactoryClientMainForm},
ClassFactoryLibrary_Intf in 'ClassFactoryLibrary_Intf.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TClassFactoryClientMainForm, ClassFactoryClientMainForm);
Application.Run;
end.