📄 mpiringdoc.cpp
字号:
// MPIRingDoc.cpp : implementation of the CMPIRingDoc class//#include "stdafx.h"#include "MPIRing.h"#include "MPIRingDoc.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CMPIRingDocIMPLEMENT_DYNCREATE(CMPIRingDoc, CDocument)BEGIN_MESSAGE_MAP(CMPIRingDoc, CDocument) //{{AFX_MSG_MAP(CMPIRingDoc) //}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CMPIRingDoc construction/destructionCMPIRingDoc::CMPIRingDoc(){}CMPIRingDoc::~CMPIRingDoc(){}BOOL CMPIRingDoc::OnNewDocument(){ if (!CDocument::OnNewDocument()) return FALSE; return TRUE;}/////////////////////////////////////////////////////////////////////////////// CMPIRingDoc serializationvoid CMPIRingDoc::Serialize(CArchive& ar){ if (ar.IsStoring()) { } else { }}/////////////////////////////////////////////////////////////////////////////// CMPIRingDoc diagnostics#ifdef _DEBUGvoid CMPIRingDoc::AssertValid() const{ CDocument::AssertValid();}void CMPIRingDoc::Dump(CDumpContext& dc) const{ CDocument::Dump(dc);}#endif //_DEBUG/////////////////////////////////////////////////////////////////////////////// CMPIRingDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -