26 lines
515 B
ObjectPascal
26 lines
515 B
ObjectPascal
|
|
unit uBalancesViewRegister;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
procedure RegisterViews;
|
||
|
|
procedure UnregisterViews;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
uses
|
||
|
|
uEditorRegistryUtils, uEditorBalance, uEditorBalances;
|
||
|
|
|
||
|
|
procedure RegisterViews;
|
||
|
|
begin
|
||
|
|
EditorRegistry.RegisterClass(TfEditorBalances, 'EditorBalances');
|
||
|
|
EditorRegistry.RegisterClass(TfEditorBalance, 'EditorBalance');
|
||
|
|
end;
|
||
|
|
|
||
|
|
procedure UnregisterViews;
|
||
|
|
begin
|
||
|
|
EditorRegistry.UnRegisterClass(TfEditorBalances);
|
||
|
|
EditorRegistry.UnRegisterClass(TfEditorBalance);
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|