fork download
  1. #ifndef PROJETO_H
  2. #define PROJETO_H
  3.  
  4. #include <string>
  5. using namespace std;
  6.  
  7. class projeto {
  8. private:
  9. string codprojeto;
  10. int estprojeto;
  11. int faseprojeto;
  12. int funcao;
  13. public:
  14. projeto();
  15. bool regcod(string cod);
  16. string consultarcod();
  17. };
  18.  
  19. #endif // PROJETO_H
  20.  
  21. int main() {}
  22.  
  23. //https://pt.stackoverflow.com/q/148635/101
Success #stdin #stdout 0s 4308KB
stdin
Standard input is empty
stdout
Standard output is empty