[21] | 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 CommonPackage;
|
---|
| 6 |
|
---|
| 7 | {$warn 5023 off : no warning about unused units}
|
---|
| 8 | interface
|
---|
| 9 |
|
---|
| 10 | uses
|
---|
| 11 | StopWatch, Common, DebugLog, Common.Delay, PrefixMultiplier, URI, Threading,
|
---|
| 12 | Memory, ResetableThread, Pool, LastOpenedList, RegistryEx, JobProgressView,
|
---|
| 13 | XML, ApplicationInfo, SyncCounter, ListViewSort, PersistentForm, FindFile,
|
---|
| 14 | ScaleDPI, Theme, StringTable, MetaCanvas, Geometric, Translator, Languages,
|
---|
| 15 | PixelPointer, DataFile, TestCase, Generics, Table, FormEx, FormTests,
|
---|
| 16 | FormTest, FormAbout, FormKeyShortcuts, ItemList, FormItem, FormList,
|
---|
| 17 | LazarusPackageIntf;
|
---|
| 18 |
|
---|
| 19 | implementation
|
---|
| 20 |
|
---|
| 21 | procedure Register;
|
---|
| 22 | begin
|
---|
| 23 | RegisterUnit('DebugLog', @DebugLog.Register);
|
---|
| 24 | RegisterUnit('PrefixMultiplier', @PrefixMultiplier.Register);
|
---|
| 25 | RegisterUnit('LastOpenedList', @LastOpenedList.Register);
|
---|
| 26 | RegisterUnit('JobProgressView', @JobProgressView.Register);
|
---|
| 27 | RegisterUnit('ApplicationInfo', @ApplicationInfo.Register);
|
---|
| 28 | RegisterUnit('ListViewSort', @ListViewSort.Register);
|
---|
| 29 | RegisterUnit('PersistentForm', @PersistentForm.Register);
|
---|
| 30 | RegisterUnit('FindFile', @FindFile.Register);
|
---|
| 31 | RegisterUnit('ScaleDPI', @ScaleDPI.Register);
|
---|
| 32 | RegisterUnit('Theme', @Theme.Register);
|
---|
| 33 | RegisterUnit('Translator', @Translator.Register);
|
---|
| 34 | RegisterUnit('FormEx', @FormEx.Register);
|
---|
| 35 | end;
|
---|
| 36 |
|
---|
| 37 | initialization
|
---|
| 38 | RegisterPackage('Common', @Register);
|
---|
| 39 | end.
|
---|