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

📄 student.h

📁 通讯录程序
💻 H
字号:
// Student.h: interface for the CStudent class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_STUDENT_H__5F6AE5DE_A286_45FB_AD5F_F828EF208D33__INCLUDED_)
#define AFX_STUDENT_H__5F6AE5DE_A286_45FB_AD5F_F828EF208D33__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CStudent  
{
private:
	
public:
	CString GetAddress();
	CString GetPost();
	CString GetTeleNum();
	CString GetName();
	CString GetId();
	void AddAddress(const CString add);
	void AddPost(const CString post);
	void AddTeleNum(const CString tel);
	void AddID(const CString id);
	void AddName(const CString s);
	CStudent();
	virtual ~CStudent();
};

#endif // !defined(AFX_STUDENT_H__5F6AE5DE_A286_45FB_AD5F_F828EF208D33__INCLUDED_)

⌨️ 快捷键说明

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