8 lines
266 B
C++
8 lines
266 B
C++
#include "Student.h"
|
|
|
|
Student::Student(int id, const std::string& username, const std::string& password, const std::string& email)
|
|
: User(id, username, password), email(email) {
|
|
role = Role::STUDENT;
|
|
}
|
|
|
|
std::string Student::getEmail() const { return email; } |