mfcdesigndoc.h

来自「MFC做的学生管理系统」· C头文件 代码 · 共 61 行

H
61
字号
// MfcDesignDoc.h : interface of the CMfcDesignDoc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MFCDESIGNDOC_H__629BEFAE_115C_465C_A0A6_E2E19C36910C__INCLUDED_)
#define AFX_MFCDESIGNDOC_H__629BEFAE_115C_465C_A0A6_E2E19C36910C__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Student.h"
#include "afxtempl.h" //要用里面的CList类


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

// Attributes
public:
	CList<CStudent*, CStudent*>   m_StudentList; //信息列表
	CString                       m_strFileName; //当前的数据文件名
// Operations
public:

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

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CMfcDesignDoc)
		// 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_MFCDESIGNDOC_H__629BEFAE_115C_465C_A0A6_E2E19C36910C__INCLUDED_)

⌨️ 快捷键说明

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