home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / wins / mytooltip.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  1KB  |  49 lines

  1. #if !defined(AFX_MYTOOLTIP_H__B34BEDF1_8E51_11D1_82FF_00A0C91BC942__INCLUDED_)
  2. #define AFX_MYTOOLTIP_H__B34BEDF1_8E51_11D1_82FF_00A0C91BC942__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // MyToolTip.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyToolTip window
  12.  
  13. class CMyToolTip : public CToolTipCtrl
  14. {
  15. // Construction
  16. public:
  17.     CMyToolTip();
  18.  
  19. // Attributes
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CMyToolTip)
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CMyToolTip();
  33.  
  34.     // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMyToolTip)
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.     //}}AFX_MSG
  39.  
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.  
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47.  
  48. #endif // !defined(AFX_MYTOOLTIP_H__B34BEDF1_8E51_11D1_82FF_00A0C91BC942__INCLUDED_)
  49.