source: branches/generator/Packages/Common/Common.pas

Last change on this file was 189, checked in by chronos, 6 years ago
File size: 1.2 KB
Line 
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
5unit Common;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
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
17implementation
18
19procedure Register;
20begin
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);
31end;
32
33initialization
34 RegisterPackage('Common', @Register);
35end.
Note: See TracBrowser for help on using the repository browser.