menusampledoc.cpp

来自「《突破Visual C++.NET编程实例五十讲+源文件,初学者学习的好东东!」· C++ 代码 · 共 39 行

CPP
39
字号

#include "stdafx.h"
#include "MenuSampleDoc.h"


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


IMPLEMENT_DYNCREATE(CMenuSampleDoc, CDocument)

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

CMenuSampleDoc::CMenuSampleDoc()
{
}

CMenuSampleDoc::~CMenuSampleDoc()
{
}

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

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

⌨️ 快捷键说明

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