git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@81 f4e31baf-9722-1c47-927c-6f952f962d4b
24 lines
410 B
ObjectPascal
24 lines
410 B
ObjectPascal
unit uUnidadesMedidaViewRegister;
|
|
|
|
interface
|
|
|
|
procedure RegisterViews;
|
|
procedure UnregisterViews;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uEditorRegistryUtils, uEditorUnidadesMedida;
|
|
|
|
procedure RegisterViews;
|
|
begin
|
|
EditorRegistry.RegisterClass(TfEditorUnidadesMedida, 'EditorUnidadesMedida');
|
|
end;
|
|
|
|
procedure UnregisterViews;
|
|
begin
|
|
EditorRegistry.UnRegisterClass(TfEditorUnidadesMedida);
|
|
end;
|
|
|
|
end.
|