This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES2/Source/Modulos/Informes base/Views/uInformesViewRegister.pas

24 lines
380 B
ObjectPascal

unit uInformesViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils, uEditorInformes;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorInformes, 'EditorInformes');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorInformes);
end;
end.