#include #include "Company.h" using namespace std; int main() { string country="england",city="london", country2="",city2="", country3="",city3="", country4="",city4="", name="John Smith", name2="Eirik Thorensen", name3="Bob Miller", name4="Thomas Richards", name5="Test Test"; Office o1(city,country); Office o2(city2,country2); Office o3(city3,country4); Office o4(city4,country4); Employee e1(name,50000); Employee e2(name2,60000); Employee e3(name3,44000); Employee e4(name4,33000); Employee e5(name5,100); //cout << o.ToString() << endl; //cout << e.ToString() << endl; Company c; c.AddOffice(o1); c.DisplayOffices(); c.RemoveOffice(city,country); c.DisplayOffices(); c.AddEmployee(e1,1); c.AddEmployee(e2,2); c.AddEmployee(e3,3); c.AddEmployee(e4,4); c.DisplayEmployee(1); c.DisplayEmployee(2); c.DisplayEmployee(3); c.DisplayEmployee(4); c.AddEmployee(e5,4); c.GivePayrise(4,500); c.DisplayEmployee(4); return 0; }