FastReport_FMX_2.8.12/LibD28x64/FmxLinuxFrxTee.dpr

22 lines
350 B
ObjectPascal
Raw Normal View History

2024-01-10 21:50:38 +01:00
program FmxLinuxFrxIBX;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
FMX.fs_ichartrtti,
FMX.frxChart,
FMX.frxChartEditor,
FMX.frxChartGallery,
FMX.frxChartHelpers,
FMX.frxChartRTTI;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.