This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef ADMINISTRADOR_H | |
| #define ADMINISTRADOR_H | |
| #include "Usuario.h" | |
| using namespace std; | |
| // La clase Administrador hereda públicamente de Usuario | |
| class Administrador : public Usuario { | |
| public: | |
| Administrador(string nombre, string pass); |