#ifndef PROFESSOR_H #define PROFESSOR_H #include "User.h" #include class Professor : public User { public: Professor(int id, const std::string& username, const std::string& passwordHash); void displayMenu() const override; }; #endif