📄 sturoom.h
字号:
// StuRoom.h: interface for the CStuRoom class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STUROOM_H__01AD78AB_4882_40B1_8673_F854C4DDB7AC__INCLUDED_)
#define AFX_STUROOM_H__01AD78AB_4882_40B1_8673_F854C4DDB7AC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "room.h"
#include "student.h"
class CStuRoom : public Cobjectset
{
public:
Croom* room;
Cstudent *student;
public:
CStuRoom(Croom*,Cstudent*);
CStuRoom();
Croom *getroom(){ return room;};
Cstudent *getstudent(){ return student;};
CStuRoom *SearchRecord(Cstudent*) ;
virtual void Serialize(CArchive &ar);
protected:
DECLARE_SERIAL(CStuRoom)
};
#endif // !defined(AFX_STUROOM_H__01AD78AB_4882_40B1_8673_F854C4DDB7AC__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -