-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAEFrameworkReg.pas
More file actions
29 lines (20 loc) · 1.17 KB
/
AEFrameworkReg.pas
File metadata and controls
29 lines (20 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
AE Framework © 2022 by Akos Eigler is licensed under CC BY 4.0.
To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/
This license requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt,
and build upon the material in any medium or format, even for commercial purposes.
}
Unit AEFrameworkReg;
Interface
Procedure Register;
Implementation
Uses System.Classes, AE.Comp.HeaderMenuItem, AE.Comp.PageControl, AE.Comp.ComboBox, AE.Comp.ThreadedTimer, AE.Comp.Updater,
AE.Comp.DBGrid, AE.Comp.Updater.FileProvider.HTTP, AE.Comp.Updater.FileProvider.Flat, AE.Comp.Updater.FileProvider.Custom,
AE.MNB.ExchangeRates, AE.Comp.KeepMeAwake, AE.Comp.MenuTreeParser, AE.Comp.TagEditor;
Procedure Register;
Begin
RegisterComponents('AE Components', [TAEHeaderMenuItem, TAEPageControl, TAEComboBox, TAEThreadedTimer, TAEDBGrid, TAEMNBExchangeRates, TAEKeepMeAwake, TAEMenuTreeParser, TAETagEditor]);
RegisterComponents('AE Updater components', [TAEUpdater, TAEUpdaterHTTPFileProvider, TAEUpdaterFlatFileProvider, TAEUpdaterCustomFileProvider]);
// RegisterComponentEditor(TMyComponent, TMyEditor);
End;
End.