1 | { This file was automatically created by Lazarus. Do not edit!
|
---|
2 | This source is only used to compile and install the package.
|
---|
3 | }
|
---|
4 |
|
---|
5 | unit Common;
|
---|
6 |
|
---|
7 | {$warn 5023 off : no warning about unused units}
|
---|
8 | interface
|
---|
9 |
|
---|
10 | uses
|
---|
11 | StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading,
|
---|
12 | UMemory, UResetableThread, UPool, ULastOpenedList, URegistry,
|
---|
13 | UJobProgressView, UXMLUtils, UApplicationInfo, USyncCounter, UListViewSort,
|
---|
14 | UPersistentForm, UFindFile, UScaleDPI, UTheme, UStringTable,
|
---|
15 | LazarusPackageIntf;
|
---|
16 |
|
---|
17 | implementation
|
---|
18 |
|
---|
19 | procedure Register;
|
---|
20 | begin
|
---|
21 | RegisterUnit('UDebugLog', @UDebugLog.Register);
|
---|
22 | RegisterUnit('UPrefixMultiplier', @UPrefixMultiplier.Register);
|
---|
23 | RegisterUnit('ULastOpenedList', @ULastOpenedList.Register);
|
---|
24 | RegisterUnit('UJobProgressView', @UJobProgressView.Register);
|
---|
25 | RegisterUnit('UApplicationInfo', @UApplicationInfo.Register);
|
---|
26 | RegisterUnit('UListViewSort', @UListViewSort.Register);
|
---|
27 | RegisterUnit('UPersistentForm', @UPersistentForm.Register);
|
---|
28 | RegisterUnit('UFindFile', @UFindFile.Register);
|
---|
29 | RegisterUnit('UScaleDPI', @UScaleDPI.Register);
|
---|
30 | RegisterUnit('UTheme', @UTheme.Register);
|
---|
31 | end;
|
---|
32 |
|
---|
33 | initialization
|
---|
34 | RegisterPackage('Common', @Register);
|
---|
35 | end.
|
---|