#ifndef DOCUMENTO #define DOCUMENTO #include <string> class Documento{ std::string nome; int prioridade; public: Documento(std::string, int); std::string retornaNome(); int retornaPrioridade(); }; #endif