home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / desktop / hotkey / hotkey95.exe / Source / Components / AboutPrp.pas < prev    next >
Pascal/Delphi Source File  |  1997-02-13  |  530b  |  24 lines

  1. unit AboutPrp;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls, Buttons;
  7.  
  8. type
  9.   TAboutInfo = class( TPersistent )
  10.   private
  11.     FCopyrightDate: string;
  12.     FCompany      : string;
  13.     FDescription  : string;
  14.   public
  15.     property CopyrightDate: string read FCopyrightDate write FCopyrightDate;
  16.     property Company      : string read FCompany       write FCompany;
  17.     property Description  : string read FDescription   write FDescription;
  18.   end;
  19.  
  20. implementation
  21.  
  22. end.
  23.  
  24.