#include "Professor.h" Professor::Professor(int id, const std::string& username, const std::string& password) : User(id, username, password) { role = Role::PROF; }