"Antonio was not declared in this scope"
Os copio el .h primero y luego el main
Código c++:
Ver original
class Persona { public: void setedad(int edad) { m_edad = edad; } void setnombre (const string& nombre) { m_nombre = nombre; } int getedad () { return m_edad; } const string getnombre() { return m_nombre; } void display() { cout << getnombre() << " , " << getedad() << endl; } private: int m_edad; string m_nombre; };
Este es el main
Código c++:
Ver original
#include <point.h> int main() { Persona nueva; nueva.setedad(56); nueva.setnombre(Antonio); nueva.display(); }
Un saludo y gracias