⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 6spsdoc.cpp

📁 此算法是牛顿欧拉法(在VC环境下)
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -