MyMonitorDoc.cpp
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:2k
- // MyMonitorDoc.cpp : implementation of the CMyMonitorDoc class
- //
- #include "stdafx.h"
- #include "MyMonitor.h"
- #include "MyMonitorDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMyMonitorDoc
- IMPLEMENT_DYNCREATE(CMyMonitorDoc, CDocument)
- BEGIN_MESSAGE_MAP(CMyMonitorDoc, CDocument)
- //{{AFX_MSG_MAP(CMyMonitorDoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CMyMonitorDoc construction/destruction
- CMyMonitorDoc::CMyMonitorDoc()
- {
- // TODO: add one-time construction code here
- }
- CMyMonitorDoc::~CMyMonitorDoc()
- {
- }
- BOOL CMyMonitorDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyMonitorDoc serialization
- void CMyMonitorDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyMonitorDoc diagnostics
- #ifdef _DEBUG
- void CMyMonitorDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CMyMonitorDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CMyMonitorDoc commands