| 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, LazarusPackageIntf;
|
|---|
| 17 |
|
|---|
| 18 | implementation
|
|---|
| 19 |
|
|---|
| 20 | procedure Register;
|
|---|
| 21 | begin
|
|---|
| 22 | RegisterUnit('DebugLog', @DebugLog.Register);
|
|---|
| 23 | RegisterUnit('PrefixMultiplier', @PrefixMultiplier.Register);
|
|---|
| 24 | RegisterUnit('LastOpenedList', @LastOpenedList.Register);
|
|---|
| 25 | RegisterUnit('JobProgressView', @JobProgressView.Register);
|
|---|
| 26 | RegisterUnit('ApplicationInfo', @ApplicationInfo.Register);
|
|---|
| 27 | RegisterUnit('ListViewSort', @ListViewSort.Register);
|
|---|
| 28 | RegisterUnit('PersistentForm', @PersistentForm.Register);
|
|---|
| 29 | RegisterUnit('FindFile', @FindFile.Register);
|
|---|
| 30 | RegisterUnit('ScaleDPI', @ScaleDPI.Register);
|
|---|
| 31 | RegisterUnit('Theme', @Theme.Register);
|
|---|
| 32 | RegisterUnit('Translator', @Translator.Register);
|
|---|
| 33 | RegisterUnit('FormEx', @FormEx.Register);
|
|---|
| 34 | end;
|
|---|
| 35 |
|
|---|
| 36 | initialization
|
|---|
| 37 | RegisterPackage('Common', @Register);
|
|---|
| 38 | end.
|
|---|