sendstudentdoc.cpp

来自「C源码 数据库通过网络进行发 收 通过网络发送数据库中的数据 通过网络接收数」· C++ 代码 · 共 71 行

CPP
71
字号
// SendStudentDoc.cpp : implementation of the CSendStudentDoc class
//

#include "stdafx.h"
#include "SendStudent.h"

#include "SendStudentSet.h"
#include "SendStudentDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSendStudentDoc

IMPLEMENT_DYNCREATE(CSendStudentDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CSendStudentDoc construction/destruction

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

}

CSendStudentDoc::~CSendStudentDoc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CSendStudentDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CSendStudentDoc commands

⌨️ 快捷键说明

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