Téléverser les fichiers vers "/"
This commit is contained in:
14
Professor.h
Normal file
14
Professor.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user