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

📄 gearmeasurementdoc.cpp

📁 大齿轮渐开线齿形误差在位误差检测
💻 CPP
字号:
//////////////////////////////////////////////////////////////////////////////////
// GearMeasurementDoc.cpp : implementation of the CGearMeasurementDoc class
// 数据存储类的成员函数的定义文件
// 一般不在这里编程,主要作用是存储数据供交换
//////////////////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "GearMeasurement.h"

#include "GearMeasurementDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CGearMeasurementDoc

IMPLEMENT_DYNCREATE(CGearMeasurementDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CGearMeasurementDoc construction/destruction

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

}

CGearMeasurementDoc::~CGearMeasurementDoc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CGearMeasurementDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CGearMeasurementDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CGearMeasurementDoc commands

⌨️ 快捷键说明

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