czlowiekzgon

Untitled

Nov 16th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #pragma once
  2. #include "Assassin.h"
  3. using namespace std;
  4. class Boss {
  5. private:
  6. string nameBoss;
  7. public:
  8. Boss();
  9. ~Boss();
  10. void init();
  11. void show();
  12.  
  13.  
  14.  
  15. };
  16.  
  17.  
  18. class Gang {
  19. private:
  20. string name_gang;
  21. int year;
  22. Boss * ptrBoss = nullptr;
  23. int sizeBoss;
  24. public:
  25. Gang();
  26. ~Gang();
  27. void init();
  28. void show();
  29. Gang & operator=(const Gang & g);
  30.  
  31.  
  32. };
Add Comment
Please, Sign In to add comment