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

CA认证

开发平台:

Visual C++

  1. // MyCapDoc.cpp : implementation of the CMyCapDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "MyCap.h"
  5. #include "MyCapDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyCapDoc
  13. IMPLEMENT_DYNCREATE(CMyCapDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CMyCapDoc, CDocument)
  15. //{{AFX_MSG_MAP(CMyCapDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CMyCapDoc construction/destruction
  22. CMyCapDoc::CMyCapDoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CMyCapDoc::~CMyCapDoc()
  27. {
  28. }
  29. BOOL CMyCapDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. // TODO: add reinitialization code here
  34. // (SDI documents will reuse this document)
  35. m_count = -1;
  36. return TRUE;
  37. }
  38. void CMyCapDoc::SetCount(int m_cou)
  39. {
  40. m_count = m_cou;
  41. SetModifiedFlag(TRUE);
  42. UpdateAllViews(NULL);
  43. }
  44. int CMyCapDoc::GetCount()
  45. {
  46. return m_count;
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CMyCapDoc serialization
  50. void CMyCapDoc::Serialize(CArchive& ar)
  51. {
  52. if (ar.IsStoring())
  53. {
  54. // TODO: add storing code here
  55. }
  56. else
  57. {
  58. // TODO: add loading code here
  59. }
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CMyCapDoc diagnostics
  63. #ifdef _DEBUG
  64. void CMyCapDoc::AssertValid() const
  65. {
  66. CDocument::AssertValid();
  67. }
  68. void CMyCapDoc::Dump(CDumpContext& dc) const
  69. {
  70. CDocument::Dump(dc);
  71. }
  72. #endif //_DEBUG
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CMyCapDoc commands