// File: LeapYear.h // Year subclass // Overrides methods that handle leap year differently // Prepared by Dr. Spiegel #include "Year.h" class LeapYear :public Year { public: // Construct date in 366 day year LeapYear(int monthVal,int dayVal,int yearVal); // Count days with 29 in February int daysElapsed(); };