31 lines
488 B
C
31 lines
488 B
C
|
/*
|
|||
|
* <EFBFBD>γ̱<EFBFBD>DAO
|
|||
|
*/
|
|||
|
#ifndef COURSE_H
|
|||
|
#define COURSE_H
|
|||
|
|
|||
|
#include<string>
|
|||
|
using std::string;
|
|||
|
class Course
|
|||
|
{
|
|||
|
public:
|
|||
|
Course() { ; }
|
|||
|
Course(string id, string name) {
|
|||
|
this->id = id;
|
|||
|
this->name = name;
|
|||
|
}
|
|||
|
|
|||
|
string getId() { return id; }
|
|||
|
void setId(string id) { this->id = id; }
|
|||
|
string getName() { return name; }
|
|||
|
void setName(string name) { this->name = name; }
|
|||
|
|
|||
|
string toString() {
|
|||
|
return id + "\t" + name;
|
|||
|
}
|
|||
|
private:
|
|||
|
string id;//<2F>γ̺<CEB3>
|
|||
|
string name;//<2F>γ<EFBFBD><CEB3><EFBFBD>
|
|||
|
};
|
|||
|
|
|||
|
#endif // !COURSE_H
|