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

书籍源码

开发平台:

Visual C++

  1. // ex101Doc.h : interface of the CEx101Doc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EX101DOC_H__56CAB473_82A0_4F85_920A_93FBF89770F6__INCLUDED_)
  5. #define AFX_EX101DOC_H__56CAB473_82A0_4F85_920A_93FBF89770F6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEx101Doc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CEx101Doc();
  13. DECLARE_DYNCREATE(CEx101Doc)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CEx101Doc)
  21. public:
  22. virtual BOOL OnNewDocument();
  23. virtual void Serialize(CArchive& ar);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. struct{
  28. int nProduct; //月份产量
  29. char sNote[50]; //备注
  30. }m_Month[12]; //记录各月信息
  31. int m_nTotalProduct;//年总产量
  32. int m_nYear; //年份
  33. virtual ~CEx101Doc();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CEx101Doc)
  42. afx_msg void OnCreateText();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_EX101DOC_H__56CAB473_82A0_4F85_920A_93FBF89770F6__INCLUDED_)