e3_1doc.h

来自「创建用户界面交互平台,主要是熟悉控件的使用」· C头文件 代码 · 共 59 行

H
59
字号
// E3_1Doc.h : interface of the CE3_1Doc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_E3_1DOC_H__0CC84156_0EC1_440E_81AD_4B4CB45E55AA__INCLUDED_)
#define AFX_E3_1DOC_H__0CC84156_0EC1_440E_81AD_4B4CB45E55AA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Student.h"
#define N  33

class CE3_1Doc : public CDocument
{
protected: // create from serialization only
	CE3_1Doc();
	DECLARE_DYNCREATE(CE3_1Doc)

// Attributes
public:
   CStudent m_Student[N];
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CE3_1Doc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CE3_1Doc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CE3_1Doc)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_E3_1DOC_H__0CC84156_0EC1_440E_81AD_4B4CB45E55AA__INCLUDED_)

⌨️ 快捷键说明

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