fiveView.h
上传用户:kkzhu_0
上传日期:2007-01-05
资源大小:214k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // fiveView.h : interface of the CFiveView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CFiveView : public CView
  5. {
  6. protected: // create from serialization only
  7. CFiveView();
  8. DECLARE_DYNCREATE(CFiveView)
  9. // Attributes
  10. public:
  11. CFiveDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CFiveView)
  17. public:
  18. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. protected:
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. public:
  24. virtual ~CFiveView();
  25. #ifdef _DEBUG
  26. virtual void AssertValid() const;
  27. virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29. protected:
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CFiveView)
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #ifndef _DEBUG  // debug version in fiveView.cpp
  37. inline CFiveDoc* CFiveView::GetDocument()
  38.    { return (CFiveDoc*)m_pDocument; }
  39. #endif
  40. /////////////////////////////////////////////////////////////////////////////