Tenho a seguinte classe: #ifndef PESSOA_H_INCLUDED #define PESSOA_H_INCLUDED #include <string> struct aniver{ int dia; int mes; int ano; }; class Pessoa{ private: std::string nome; std::string sexo; aniver nascimento; float altura; public: void setNome(std::string nome_); std::string getNome(); void setSexo(std::string sexo_); std::string getSexo(); void setNascimento(int dia, int mes, int ano); std::string getNascimento(); void setAltura(float altura_); float getAltura();Read more