FactuGES2/Source/Modulos/Contabilidad cuentas especiales/Views/uCuentasEspecialesViewRegister.pas
2007-11-28 17:40:31 +00:00

26 lines
588 B
ObjectPascal

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.