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

📄 biyeshejidoc.cpp

📁 学籍管理系统 实现接单的学籍管理功能 主要是针对高中的
💻 CPP
字号:
// biyeshejiDoc.cpp : implementation of the CBiyeshejiDoc class
//

#include "stdafx.h"
#include "biyesheji.h"

#include "biyeshejiDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiDoc

IMPLEMENT_DYNCREATE(CBiyeshejiDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiDoc construction/destruction

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

}

CBiyeshejiDoc::~CBiyeshejiDoc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiDoc commands

⌨️ 快捷键说明

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