This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AlonsoYSal_FactuGES/Servidor/uFrameConfiguracion.pas
2007-06-21 16:02:50 +00:00

35 lines
581 B
ObjectPascal

unit uFrameConfiguracion;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
IConfiguracionFrame = interface
['{07F3EDBF-DFED-4B76-ADC7-0D3B83FB6F9B}']
procedure Init;
procedure Finalize;
end;
TFrameConfiguracion = class(TFrame, IConfiguracionFrame)
protected
procedure Finalize; virtual;
public
procedure Init; virtual; abstract;
end;
implementation
{$R *.dfm}
{ TFrameConfiguracion }
procedure TFrameConfiguracion.Finalize;
begin
Hide;
end;
end.