This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/Modulos/Contactos/Views/uViewAgente.pas
2007-06-11 15:29:06 +00:00

29 lines
664 B
ObjectPascal

unit uViewAgente;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uViewContacto, dxLayoutLookAndFeels, DB, uDADataTable,
dxLayoutControl, cxMemo, cxDBEdit, cxContainer, cxEdit, cxTextEdit, cxControls,
cxMaskEdit, cxSpinEdit, ImgList, PngImageList, ActnList, cxHyperLinkEdit,
Buttons, PngSpeedButton;
type
IViewAgente = interface(IViewContacto)
['{AD12357F-A0BD-4CB7-9EEF-59DCBE7A3B55}']
end;
TfrViewAgente = class(TfrViewContacto, IViewAgente)
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
end.