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/Comisiones/Views/uComisionesViewRegister.pas

31 lines
712 B
ObjectPascal
Raw Normal View History

unit uComisionesViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils,
uEditorComisionesReport,
uEditorComision,
uEditorComisiones;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorComisiones, 'EditorComisiones');
EditorRegistry.RegisterClass(TfEditorComision, 'EditorComision');
EditorRegistry.RegisterClass(TfEditorComisionesPreview, 'EditorComisionesPreview');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorComisiones);
EditorRegistry.UnRegisterClass(TfEditorComision);
EditorRegistry.UnRegisterClass(TfEditorComisionesPreview);
end;
end.