FactuGES2/Source/Modulos/Contabilidad cuentas especiales/Views/uCuentasEspecialesViewRegister.pas

26 lines
588 B
ObjectPascal
Raw Normal View History

unit uCuentasEspecialesViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils, uEditorCuentaEspecial, uEditorCuentasEspeciales;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorCuentasEspeciales, 'EditorCuentasEspeciales');
EditorRegistry.RegisterClass(TfEditorCuentaEspecial, 'EditorCuentaEspecial');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorCuentasEspeciales);
EditorRegistry.UnRegisterClass(TfEditorCuentaEspecial);
end;
end.