home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / hierwiz / usreditc.h < prev   
C/C++ Source or Header  |  1998-03-05  |  1KB  |  48 lines

  1. // usreditc.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CUsrEditClass window
  14. #ifndef __USREDIT__
  15. #define __USREDIT__
  16.  
  17. class CUsrEditClass : public CEdit
  18. {
  19. // Construction
  20. public:
  21.     CUsrEditClass();
  22.  
  23. // Attributes
  24. public:
  25.  
  26. // Operations
  27. public:
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CUsrEditClass)
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. public:
  36.     virtual ~CUsrEditClass();
  37.     // Generated message map functions
  38. protected:
  39.     //{{AFX_MSG(CUsrEditClass)
  40.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  41.     //}}AFX_MSG
  42.  
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. #endif //__USREDIT__
  47. /////////////////////////////////////////////////////////////////////////////
  48.