Also, your method definitions, e.g.,
void dayOfTheWeek::printDay() { cout << "Today is: " << day[dayNum] << endl << endl; };
and onward should not end with a semicolon after the brace (you do still need the ones at the end of your class declaration and your const array).
That should not matter.