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
2007-07-10 17:33:08 +00:00

24 lines
400 B
ObjectPascal

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.