#ifndef Pregunta_h #define Pregunta_h #include #include class Pregunta { protected: std::string texto; std::string respuesta; public: virtual ~Pregunta() {} virtual void preguntar() = 0; // pure virtual method const Pregunta& operator=(const Pregunta& other) = delete; virtual bool cargar(std::ifstream& archivo); void imprimir(); }; #endif