merch05_28doc.cpp

来自「商品信息管理」· C++ 代码 · 共 85 行

CPP
85
字号
// Merch05_28Doc.cpp : implementation of the CMerch05_28Doc class
//

#include "stdafx.h"
#include "Merch05_28.h"

#include "Merch05_28Doc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMerch05_28Doc

IMPLEMENT_DYNCREATE(CMerch05_28Doc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CMerch05_28Doc construction/destruction

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

}

CMerch05_28Doc::~CMerch05_28Doc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMerch05_28Doc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CMerch05_28Doc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CMerch05_28Doc commands

⌨️ 快捷键说明

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