ex72View.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex72View.h : interface of the CEx72View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EX72VIEW_H__916E7146_4865_4FFA_AD7F_E07FCB871684__INCLUDED_)
  5. #define AFX_EX72VIEW_H__916E7146_4865_4FFA_AD7F_E07FCB871684__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEx72View : public CView
  10. {
  11. protected: // create from serialization only
  12. CEx72View();
  13. DECLARE_DYNCREATE(CEx72View)
  14. // Attributes
  15. public:
  16. CEx72Doc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CEx72View)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. void OnWizard();
  33. void OnProperties();
  34. virtual ~CEx72View();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CEx72View)
  43. afx_msg void OnSheetDlg();
  44. afx_msg void OnWizardDlg();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in ex72View.cpp
  49. inline CEx72Doc* CEx72View::GetDocument()
  50.    { return (CEx72Doc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_EX72VIEW_H__916E7146_4865_4FFA_AD7F_E07FCB871684__INCLUDED_)