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

📄 chevdoc.cpp

📁 深入剖析Visual C++编程技术及应用实例
💻 CPP
字号:
#include "stdafx.h"
#include "Chev.h"

#include "ChevDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CChevDoc

IMPLEMENT_DYNCREATE(CChevDoc, CDocument)

BEGIN_MESSAGE_MAP(CChevDoc, CDocument)
	//{{AFX_MSG_MAP(CChevDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
CChevDoc::CChevDoc()
{
}

CChevDoc::~CChevDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
void CChevDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////

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

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

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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