student.h

来自「通讯录程序」· C头文件 代码 · 共 33 行

H
33
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?