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/Informe ventas por articulo/Views/uInfVentasArticuloViewRegister.pas
2011-10-03 17:47:25 +00:00

26 lines
614 B
ObjectPascal

unit uInfVentasArticuloViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils, uEditorInfVentasArticulo, uEditorInfVentasAlbArticulo;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorInfVentasArticulo, 'EditorInfVentasArticulo');
EditorRegistry.RegisterClass(TfEditorInfVentasAlbArticulo, 'EditorInfVentasAlbArticulo');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorInfVentasArticulo);
EditorRegistry.UnRegisterClass(TfEditorInfVentasAlbArticulo);
end;
end.