home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Cell Control / DATA1.CAB / DELPHIDM / UDrag.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-01-11  |  376 b   |  25 lines

  1. unit UDrag;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   Tempunit, ComCtrls, StdCtrls, Buttons, OleCtrls, CELLLib_TLB, ExtCtrls;
  8.  
  9. type
  10.   TFDrag = class(TTemplate)
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16.  
  17. var
  18.   FDrag: TFDrag;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. end.
  25.