MyCapDoc.cpp
上传用户:xakehao
上传日期:2013-08-28
资源大小:100k
文件大小:2k
- // MyCapDoc.cpp : implementation of the CMyCapDoc class
- //
- #include "stdafx.h"
- #include "MyCap.h"
- #include "MyCapDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMyCapDoc
- IMPLEMENT_DYNCREATE(CMyCapDoc, CDocument)
- BEGIN_MESSAGE_MAP(CMyCapDoc, CDocument)
- //{{AFX_MSG_MAP(CMyCapDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CMyCapDoc construction/destruction
- CMyCapDoc::CMyCapDoc()
- {
- // TODO: add one-time construction code here
- }
- CMyCapDoc::~CMyCapDoc()
- {
- }
- BOOL CMyCapDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- m_count = -1;
- return TRUE;
- }
- void CMyCapDoc::SetCount(int m_cou)
- {
- m_count = m_cou;
- SetModifiedFlag(TRUE);
- UpdateAllViews(NULL);
- }
- int CMyCapDoc::GetCount()
- {
- return m_count;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyCapDoc serialization
- void CMyCapDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyCapDoc diagnostics
- #ifdef _DEBUG
- void CMyCapDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CMyCapDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CMyCapDoc commands