Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #ifndef COMPANY_H
  2. #define COMPANY_H
  3.  
  4. #include <vector>
  5. #include <utility>
  6.  
  7. using namespace std;
  8.  
  9. class Company{
  10. protected:
  11. int id;
  12. string name;
  13. vector<pair<char, char> > employees;
  14. public:
  15. Company();
  16. Company(int id, string name, vector<pair<char, char> > employees);
  17. int getId() const;
  18. string getName() const;
  19. vector<pair<char, char> > getEmployees() const;
  20. string getInfo() const;
  21. };
  22.  
  23. #endif //COMPANY_H!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement