14 lines
255 B
C++
14 lines
255 B
C++
#ifndef PROFESSOR_H
|
|
#define PROFESSOR_H
|
|
|
|
#include "User.h"
|
|
#include <iostream>
|
|
|
|
class Professor : public User {
|
|
public:
|
|
Professor(int id, const std::string& username, const std::string& passwordHash);
|
|
|
|
void displayMenu() const override;
|
|
};
|
|
|
|
#endif |