-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel.dpr
executable file
·51 lines (47 loc) · 1.8 KB
/
Model.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{$H-} // string = ShortString
program Model;
{%ToDo 'Model.todo'}
uses
Forms,
UMain in 'UMain.pas' {Main},
tc in 'tc.pas',
UModel in 'UModel.pas' {FModel},
UEmbedForm in 'UEmbedForm.pas' {EmbedForm},
UTime in 'UTime.pas' {FTime},
UAllTime in 'UAllTime.pas' {FAllTime},
UBunker in 'UBunker.pas' {FBunker},
UMassa in 'UMassa.pas' {FMassa},
ULine in 'ULine.pas' {FLine},
UMaterial in 'UMaterial.pas' {FMaterial},
UResultReport in 'UResultReport.pas' {ResultReport: TQuickRep},
UModelReport in 'UModelReport.pas' {ModelReport: TQuickRep},
UBunkersReport in 'UBunkersReport.pas' {BunkersReport: TQuickRep},
UMaterialReport in 'UMaterialReport.pas' {MaterialsReport: TQuickRep},
UAbout in 'UAbout.pas' {FAbout},
UWorkGraphs in 'UWorkGraphs.pas' {FWorkGraphs},
UGraph in 'UGraph.pas' {GraphReport: TQuickRep},
USpeed in 'USpeed.pas' {FSpeed},
UReconfList in 'UReconfList.pas' {FReconfList},
URParams in 'URParams.pas' {FRParams},
UDouble in 'UDouble.pas' {FDouble},
UOpt in 'UOpt.pas' {FOpt},
URDTSC in 'URDTSC.pas',
UOptParams in 'UOptParams.pas' {FOptParams};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Ìîäåëèðîâàíèå';
Application.CreateForm(TMain, Main);
Application.CreateForm(TFModel, FModel);
Application.CreateForm(TMaterialsReport, MaterialsReport);
Application.CreateForm(TFAbout, FAbout);
Application.CreateForm(TFWorkGraphs, FWorkGraphs);
Application.CreateForm(TGraphReport, GraphReport);
Application.CreateForm(TFSpeed, FSpeed);
Application.CreateForm(TFReconfList, FReconfList);
Application.CreateForm(TFRParams, FRParams);
Application.CreateForm(TFDouble, FDouble);
Application.CreateForm(TFOpt, FOpt);
Application.CreateForm(TFOptParams, FOptParams);
Application.Run;
end.