documento.hh 218 B

12345678910111213141516
  1. #ifndef DOCUMENTO
  2. #define DOCUMENTO
  3. #include <string>
  4. class Documento{
  5. std::string nome;
  6. int prioridade;
  7. public:
  8. Documento(std::string, int);
  9. std::string retornaNome();
  10. int retornaPrioridade();
  11. };
  12. #endif