#ifndef COMPANY
#define COMPANY

#include "employee1.h" // declares Employee class

class Company
{
   public:

      // Postcondition: this Company has been initialized.
      Company( );

      //  Postcondition: The employee with the highest gross pay has been
      //                 determined.  Ties have been ignored.
      void findBestPaid();


      // Postcondition: The best-paid employee in the input has been printed.
      void printBestPaid() const;

   
   private:
      Employee bestPaid;
      bool atLeastOneEmployee;
}; // Company

#endif

