czlowiekzgon

cons h

Nov 28th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. class Consigliere{
  7. private:
  8. string nameConsigliere;
  9. string arrayPolicemen[1];
  10. string arrayPoliticians[1];
  11.  
  12. public:
  13. Consigliere();
  14. Consigliere(string name,string policeman,string politician);
  15. ~Consigliere();
  16. void initConsigliere();
  17. void show();
  18.  
  19. };
Add Comment
Please, Sign In to add comment