home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CDragAcrossTable 1.0b1 / CGlobalMouseTask.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  308 b   |  12 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. class CGlobalMouseTask : public CTask
  4. {
  5.     public:
  6.  
  7.         void IGlobalMouseTask( short aNameIndex );
  8.         
  9.         virtual void BeginTracking( Point startPt );
  10.         virtual void KeepTracking( Point currPt, Point prevPt, Point startPt );
  11.         virtual void EndTracking( Point currPt, Point prevPt, Point startPt );
  12. };