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

书籍源码

开发平台:

Visual C++

  1. // ex510View.h : interface of the CEx510View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EX510VIEW_H__BC34A56D_BBB9_45DD_B97B_7CC3162BF97D__INCLUDED_)
  5. #define AFX_EX510VIEW_H__BC34A56D_BBB9_45DD_B97B_7CC3162BF97D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEx510View : public CView
  10. {
  11. protected: // create from serialization only
  12. CEx510View();
  13. DECLARE_DYNCREATE(CEx510View)
  14. // Attributes
  15. public:
  16. CEx510Doc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CEx510View)
  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. virtual ~CEx510View();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CEx510View)
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. #ifndef _DEBUG  // debug version in ex510View.cpp
  45. inline CEx510Doc* CEx510View::GetDocument()
  46.    { return (CEx510Doc*)m_pDocument; }
  47. #endif
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_EX510VIEW_H__BC34A56D_BBB9_45DD_B97B_7CC3162BF97D__INCLUDED_)