2010-08-11 10:53:06 +00:00
|
|
|
|
{
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Copyright (<EFBFBD>) 2007. Rodax Software.
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Los contenidos de este fichero son propiedad de Rodax Software titular del
|
|
|
|
|
|
copyright. Este fichero s<EFBFBD>lo podr<EFBFBD> ser copiado, distribuido y utilizado,
|
|
|
|
|
|
en su totalidad o en parte, con el permiso escrito de Rodax Software, o de
|
|
|
|
|
|
acuerdo con los t<EFBFBD>rminos y condiciones establecidas en el acuerdo/contrato
|
|
|
|
|
|
bajo el que se suministra.
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
Web: www.rodax-software.com
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Fecha primera versi<EFBFBD>n:
|
|
|
|
|
|
Versi<EFBFBD>n actual: 1.0.0
|
|
|
|
|
|
Fecha versi<EFBFBD>n actual:
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
Modificaciones:
|
|
|
|
|
|
|
|
|
|
|
|
Fecha Comentarios
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
===============================================================================
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unit uBancaElectronicaViewRegister;
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
2013-12-13 09:42:56 +00:00
|
|
|
|
uEditorRegistryUtils, uEditorExportacionNorma19, uEditorExportacionNorma19SEPA,
|
2016-01-25 11:52:35 +00:00
|
|
|
|
uEditorExportacionNorma19SEPAXML, uEditorExportacionNorma32;
|
2010-08-11 10:53:06 +00:00
|
|
|
|
|
|
|
|
|
|
procedure RegisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorExportacionNorma19, 'EditorExportacionNorma19');
|
2016-01-25 11:52:35 +00:00
|
|
|
|
EditorRegistry.RegisterClass(TfEditorExportacionNorma19SEPA, 'EditorExportacionNorma19SEPA');
|
|
|
|
|
|
EditorRegistry.RegisterClass(TfEditorExportacionNorma19SEPAXML, 'EditorExportacionNorma19SEPAXML');
|
2010-10-06 10:32:34 +00:00
|
|
|
|
EditorRegistry.RegisterClass(TfEditorExportacionNorma32, 'EditorExportacionNorma32');
|
2010-08-11 10:53:06 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure UnregisterViews;
|
|
|
|
|
|
begin
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorExportacionNorma19);
|
2016-01-25 11:52:35 +00:00
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorExportacionNorma19SEPA);
|
|
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorExportacionNorma19SEPAXML);
|
2010-10-06 10:32:34 +00:00
|
|
|
|
EditorRegistry.UnRegisterClass(TfEditorExportacionNorma32);
|
2010-08-11 10:53:06 +00:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|