git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@4 f4e31baf-9722-1c47-927c-6f952f962d4b
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.
|