Last change
on this file since 126 was 118, checked in by chronos, 2 years ago |
- Added: UCore main data module.
- Added: Test cases support for better future testing.
|
File size:
302 bytes
|
Line | |
---|
1 | unit UCore;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, UPersistentForm, UTranslator, UTheme;
|
---|
7 |
|
---|
8 | type
|
---|
9 |
|
---|
10 | { TCore }
|
---|
11 |
|
---|
12 | TCore = class(TDataModule)
|
---|
13 | PersistentForm1: TPersistentForm;
|
---|
14 | ThemeManager1: TThemeManager;
|
---|
15 | Translator1: TTranslator;
|
---|
16 | end;
|
---|
17 |
|
---|
18 | var
|
---|
19 | Core: TCore;
|
---|
20 |
|
---|
21 |
|
---|
22 | implementation
|
---|
23 |
|
---|
24 | {$R *.lfm}
|
---|
25 |
|
---|
26 | end.
|
---|
27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.