mpiringdoc.cpp
来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· C++ 代码 · 共 76 行
CPP
76 行
// 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 + =
减小字号Ctrl + -
显示快捷键?