/* 7 pts. e_posgrado.h*/ #ifndef E_POSGRADO_H #define E_POSGRADO_H #include "estudiante.h" class E_posgrado: public Estudiante // 1 { public: E_posgrado( string name, int numPub); // 2 virtual string getDescription() const; // 1 bool operator<(const E_posgrado &ep); // 2 private: int numPublicaciones; //1 }; #endif // E_POSGRADO_H