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.