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

📄 exam1_1_6doc.cpp

📁 《深入剖析visual c++编程技术vcCode(人民邮电)》的源代码
💻 CPP
字号:
// Exam1_1_6Doc.cpp : implementation of the CExam1_1_6Doc class
//

#include "stdafx.h"
#include "Exam1_1_6.h"

#include "Exam1_1_6Doc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CExam1_1_6Doc

IMPLEMENT_DYNCREATE(CExam1_1_6Doc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CExam1_1_6Doc construction/destruction

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

}

CExam1_1_6Doc::~CExam1_1_6Doc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CExam1_1_6Doc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CExam1_1_6Doc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CExam1_1_6Doc commands

⌨️ 快捷键说明

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