Téléverser les fichiers vers "/"
This commit is contained in:
19
Student.h
Normal file
19
Student.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef STUDENT_H
|
||||
#define STUDENT_H
|
||||
|
||||
#include "User.h"
|
||||
#include <iostream>
|
||||
|
||||
class Student : public User {
|
||||
private:
|
||||
std::string email;
|
||||
|
||||
public:
|
||||
Student(int id, const std::string& username, const std::string& passwordHash, const std::string& email);
|
||||
|
||||
std::string getEmail() const;
|
||||
|
||||
void displayMenu() const override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user