git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
17 lines
322 B
ObjectPascal
17 lines
322 B
ObjectPascal
program Flying;
|
|
|
|
{$R 'Default.res' 'Default.rc'}
|
|
|
|
uses
|
|
Forms,
|
|
FlyingMain in 'FlyingMain.pas' {FlyingMainForm},
|
|
FlyingSeatCalc in 'FlyingSeatCalc.pas' {FlyingSeatCalcForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TFlyingMainForm, FlyingMainForm);
|
|
Application.Run;
|
|
end.
|