6 lines
172 B
C++
6 lines
172 B
C++
#include "Professor.h"
|
|
|
|
Professor::Professor(int id, const std::string& username, const std::string& password)
|
|
: User(id, username, password) {
|
|
role = Role::PROF;
|
|
} |