MyCapDoc.h
上传用户:xakehao
上传日期:2013-08-28
资源大小:100k
文件大小:1k
源码类别:

CA认证

开发平台:

Visual C++

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