19 lines
341 B
C++
19 lines
341 B
C++
#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 |