Téléverser les fichiers vers "/"

This commit is contained in:
2026-02-20 15:17:47 +00:00
parent cf3cb73dae
commit 5090daa1e0
5 changed files with 67 additions and 0 deletions

19
Student.h Normal file
View 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