1
0
mirror of synced 2024-09-19 10:26:08 +00:00
x2log/NamedPipeClient/X2LogNamedPipeClient.dpr
Mark van Renswoude ca47ad3f4e FS#17 - Log export ability
Fixed: DateTime is now passed around everywhere (to accomodate the Export functionality)
2014-10-08 12:33:11 +00:00

34 lines
593 B
ObjectPascal

program X2LogNamedPipeClient;
uses
// FastMM4,
Vcl.Forms,
X2Log.Intf,
X2Log.Client.NamedPipe,
X2Log.Observer.MonitorForm;
{$R *.res}
var
client: IX2LogObservable;
begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'X²Log Named Pipe Client';
client := TX2LogNamedPipeClient.Create('X2LogTest');
try
with TX2LogObserverMonitorForm.Create(nil, client) do
try
ShowModal;
finally
Free;
end;
finally
client := nil;
end;
end.