source: tags/1.3.0/Packages/Common/Common.pas

Last change on this file was 10, checked in by chronos, 8 years ago
  • Added: Interface localization support.
File size: 1013 bytes
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
7interface
8
9uses
10 StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading,
11 UMemory, UResetableThread, UPool, ULastOpenedList, URegistry,
12 UJobProgressView, UXMLUtils, UApplicationInfo, USyncCounter, UListViewSort,
13 UPersistentForm, UFindFile, UScaleDPI, LazarusPackageIntf;
14
15implementation
16
17procedure Register;
18begin
19 RegisterUnit('UDebugLog', @UDebugLog.Register);
20 RegisterUnit('ULastOpenedList', @ULastOpenedList.Register);
21 RegisterUnit('UJobProgressView', @UJobProgressView.Register);
22 RegisterUnit('UApplicationInfo', @UApplicationInfo.Register);
23 RegisterUnit('UListViewSort', @UListViewSort.Register);
24 RegisterUnit('UPersistentForm', @UPersistentForm.Register);
25 RegisterUnit('UFindFile', @UFindFile.Register);
26 RegisterUnit('UScaleDPI', @UScaleDPI.Register);
27end;
28
29initialization
30 RegisterPackage('Common', @Register);
31end.
Note: See TracBrowser for help on using the repository browser.