scoregatherdoc.cpp

来自「一个学生考试成绩管理的半成品」· C++ 代码 · 共 75 行

CPP
75
字号
// ScoreGatherDoc.cpp :  CScoreGatherDoc 类的实现
//

#include "stdafx.h"
#include "ScoreGather.h"

#include "ScoreGatherDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CScoreGatherDoc

IMPLEMENT_DYNCREATE(CScoreGatherDoc, CDocument)

BEGIN_MESSAGE_MAP(CScoreGatherDoc, CDocument)
END_MESSAGE_MAP()


// CScoreGatherDoc 构造/析构

CScoreGatherDoc::CScoreGatherDoc()
{
	// TODO: 在此添加一次性构造代码

}

CScoreGatherDoc::~CScoreGatherDoc()
{
}

BOOL CScoreGatherDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
	return TRUE;
}




// CScoreGatherDoc 序列化

void CScoreGatherDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: 在此添加存储代码
	}
	else
	{
		// TODO: 在此添加加载代码
	}
}


// CScoreGatherDoc 诊断

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

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


// CScoreGatherDoc 命令

⌨️ 快捷键说明

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