mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
20 lines
374 B
ObjectPascal
20 lines
374 B
ObjectPascal
|
program MultipleStomp;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
MainForm in 'MainForm.pas' {Form4} ,
|
||
|
StompClient in '..\..\StompClient.pas',
|
||
|
StompTypes in '..\..\StompTypes.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
|
||
|
begin
|
||
|
ReportMemoryLeaksOnShutdown := True;
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TForm4, Form4);
|
||
|
Application.Run;
|
||
|
|
||
|
end.
|