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_FactuGES/Source/Modulos/Informes base/Views/uInformesViewRegister.pas.bak

24 lines
400 B
ObjectPascal
Raw Normal View History

unit uInformesBaseViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils, uEditorInformesBase;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorInformesBase, 'EditorInformesBase');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorInformesBase);
end;
end.