source: trunk/Packages/Common/Common.pas

Last change on this file was 6, checked in by chronos, 11 years ago
  • Přidáno: Okno s nastavením parametrů komunikace.
  • Přidáno: Pamatování si nastavení voleb.
  • Přidáno: Nyní lze stahovat nové operace, výpis dle časového rozmezí a měsíční výpisy.
File size: 781 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 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);
23end;
24
25initialization
26 RegisterPackage('Common', @Register);
27end.
Note: See TracBrowser for help on using the repository browser.