Skip to content

Instantly share code, notes, and snippets.

@alvesoaj
Created February 12, 2019 22:48
Show Gist options
  • Save alvesoaj/9048f785f2683bea0ebd1b5320826865 to your computer and use it in GitHub Desktop.
Save alvesoaj/9048f785f2683bea0ebd1b5320826865 to your computer and use it in GitHub Desktop.
/*
Definição da classe Pessoa: Pessoa.h
*/
#ifndef PESSOA_H
#define PESSOA_H
#include "string"
using std::string;
class Pessoa
{
public:
Pessoa();
void setNome(string nome);
string getNome();
void setIdade(int idade);
int getIdade();
private:
string nome;
int idade;
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment