EightDoc.h
上传用户:tjwfgggs
上传日期:2022-06-07
资源大小:4331k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. // EightDoc.h : interface of the CEightDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EIGHTDOC_H__AFCB4618_8CF8_4BD5_9D89_232C1DA79FEE__INCLUDED_)
  5. #define AFX_EIGHTDOC_H__AFCB4618_8CF8_4BD5_9D89_232C1DA79FEE__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NineBox.h"
  10. class CEightDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CEightDoc();
  14. DECLARE_DYNCREATE(CEightDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CEightDoc)
  22. public:
  23. virtual BOOL OnNewDocument();
  24. virtual void Serialize(CArchive& ar);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CEightDoc();
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CEightDoc)
  37. // NOTE - the ClassWizard will add and remove member functions here.
  38. //    DO NOT EDIT what you see in these blocks of generated code !
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. public:
  42. NineBox* GetBoxObj(){return &obj;}
  43. private:
  44. NineBox obj;
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_EIGHTDOC_H__AFCB4618_8CF8_4BD5_9D89_232C1DA79FEE__INCLUDED_)