//driver.cpp

/*-----------------------------------------------------------------------
    Program to test the library MonthAbbrev
  -----------------------------------------------------------------------*/

#include <iostream>                    // cin, cout, >>, <<
using namespace std;
#include "MonthAbbrev.h"

int main()
{
   MonthAbbrev month;
   char response;
   do
   {
      cout << "Enter a 3-letter month abbreviation: ";
      cin >> month;
      cout << "Month is " << month << 
           "\nIt's successor is " << next(month) << endl;

      cout << "\nMore (Y or N)? ";
      cin >> response;
   }
   while (response == 'Y' || response == 'y');
}
