home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / tstcon / tcsplit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.3 KB  |  56 lines

  1. #if !defined(AFX_TCSPLITTER_H__5808BFE0_5166_11D1_8E54_00C04FB68D60__INCLUDED_)
  2. #define AFX_TCSPLITTER_H__5808BFE0_5166_11D1_8E54_00C04FB68D60__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // TCSplitter.H : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CTCSplitter class
  12.  
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>
  15. #endif
  16.  
  17. class CTCSplitter : public CSplitterWnd
  18. {
  19.     DECLARE_DYNAMIC( CTCSplitter )
  20.  
  21. public:
  22.     CTCSplitter();           // protected constructor used by dynamic creation
  23.  
  24. // Attributes
  25. protected:
  26. public:
  27.  
  28. // Operations
  29. public:
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CTCSplitter)
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. public:
  38.     virtual ~CTCSplitter();
  39.  
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CTCSplitter)
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.     //}}AFX_MSG
  44.  
  45.    afx_msg HBRUSH OnCtlColor( CDC* pDC, CWnd* pWnd, UINT nCtlColor );
  46.  
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_TCSPLITTER_H__5808BFE0_5166_11D1_8E54_00C04FB68D60__INCLUDED_)
  56.