home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch09 / autocpnt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-13  |  1.0 KB  |  49 lines

  1. // autocpnt.h : header file
  2. //
  3.  
  4.  
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CClikPoint command target
  8.  
  9. class CClikPoint : public CCmdTarget
  10. {
  11.     DECLARE_DYNCREATE(CClikPoint)
  12. public:
  13.     CClikPoint();           // protected constructor used by dynamic creation
  14.  
  15. // Attributes
  16. public:
  17.  
  18. // Operations
  19. public:
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CClikPoint)
  24.         // NOTE - the ClassWizard will add and remove member functions here.
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. public:
  29.     virtual void OnFinalRelease();
  30.  
  31. protected:
  32.     virtual ~CClikPoint();
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CClikPoint)
  35.         // NOTE - the ClassWizard will add and remove member functions here.
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38.  
  39. public:
  40.     // Generated OLE dispatch map functions
  41.     //{{AFX_DISPATCH(CClikPoint)
  42.     short m_x;
  43.     short m_y;
  44.     //}}AFX_DISPATCH
  45.     DECLARE_DISPATCH_MAP()
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.