-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathex2.original.test.pas
57 lines (52 loc) · 949 Bytes
/
ex2.original.test.pas
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
52
53
54
55
56
57
unit ex2;
interface
uses
b,
c,
f,
f,
g,
h,
k,
l,
t,
u,
y;
// will not be sorted due to extra k in front of the word uses
implementation
kuses
b,
c,
f,
f,
z,
g,
h,
k,
l,
t,
u,
y;
{ Will be sorted, uses is preceded by comment block or compiler directive
}uses
ProjectDB.DelphiFacade.FMDMeshEntityResultData,
ProjectDB.DelphiFacade.FMDNodeCoordinates,
ProjectDB.DelphiFacade.FMOMesh,
ProjectDB.DelphiFacade.FMOMeshEntity,
ProjectDB.DelphiFacade.FMOMeshEntityPhasesState,
ProjectDB.DelphiFacade.FMOPhase,
ProjectDB.DelphiFacade.FMOStep,
ProjectDB.DelphiFacade.FacadeManagedDataView,
ProjectDB.DelphiFacade.FacadeManagedDataViewFactory,
System.SysUtils,
Xvtkwc.DataArray,
Xvtkwc.Definitions,
Xvtkwc.DllLoader,
Generics.Collections.patched,
MemoryGuard,
Optional,
ProjectDB.DelphiFacade.FMDMeshEntityComponentData,
Xvtkwc.Piece,
Xvtkwc.PvdItem,
Xvtkwc.Writer;
end.