#ifndef COMPCONT_H #define COMPCONT_H #include "employee.h" #include "contTemp.h" class Company { private: Employee bestPaid; ContTemp container; public: void inputEmployee(); //when input employee from keyboard, store the input data in the container for later use; void findBestPaid(); //go through the container to find the best paid employee void printBestPaid() const; }; #endif