Skip to content

Commit

Permalink
Update Student.h
Browse files Browse the repository at this point in the history
  • Loading branch information
bubblehead00 authored May 30, 2024
1 parent ab73714 commit 17e68b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Student.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ class Student {
public:
std::string username;
std::string password;
std:: int id;
std::priority_queue<int> courseList;
std::string getUsername();

Student(std::string u, std::string p);
Student(std::string u, std::string p, std::int id);

void enrollInCourse(int courseId);

std::string getPassword();
std::int getId();
std::priority_queue<int> getCourseList();

};
Expand Down

0 comments on commit 17e68b9

Please sign in to comment.