#include <iostream>

#include <string>

#include "company1.h"

using namespace std;


// Postcondition: The best-paid employee in the company has
//                been found and printed out.
int main()
{
   const string CLOSE_WINDOW_PROMPT =
      "Please press the Enter key to close this output window.";

   Company company;

   company.findBestPaid();
   company.printBestPaid();

   cout << endl << endl << CLOSE_WINDOW_PROMPT;
   cin.get();
   cin.get();
   return 0;
} // main

