6spsdoc.cpp

来自「此算法是牛顿欧拉法(在VC环境下)」· C++ 代码 · 共 85 行

CPP
85
字号
// 6spsDoc.cpp : implementation of the CMy6spsDoc class
//

#include "stdafx.h"
#include "6sps.h"

#include "6spsDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMy6spsDoc

IMPLEMENT_DYNCREATE(CMy6spsDoc, CDocument)

BEGIN_MESSAGE_MAP(CMy6spsDoc, CDocument)
	//{{AFX_MSG_MAP(CMy6spsDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CMy6spsDoc construction/destruction

CMy6spsDoc::CMy6spsDoc()
{
	// TODO: add one-time construction code here

}

CMy6spsDoc::~CMy6spsDoc()
{
}

BOOL CMy6spsDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMy6spsDoc serialization

void CMy6spsDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CMy6spsDoc diagnostics

#ifdef _DEBUG
void CMy6spsDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CMy6spsDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMy6spsDoc commands

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?