// BestPaidEmployee.cpp : This file contains the 'main' function. Program execution begins and ends there. // //#include "pch.h" #include #include "company1.h" #include "employee1.h" #include "company2.h" #include "employee2.h" int main() { //Company cmp; //cmp.findBestPaid(); //cmp.printBestPaid(); Company2 cmp2; cmp2.findBestPaid(); cmp2.printBestPaid(); }