@@ -0,0 +1,14 @@
#ifndef ADMIN_H
#define ADMIN_H
#include "User.h"
#include <iostream>
class Admin : public User {
public:
Admin(int id, const std::string& username, const std::string& passwordHash);
void displayMenu() const override;
};
#endif
The note is not visible to the blocked user.