#ifndef VACATION_H #define VACATION_H #include "DayOfYear.h" class Vacation { public: Vacation( int startMonth, int startDay, int duration); void Set( int newMonth, int newDay); void Set( int newDuration); const DayOfYear& GetDayOfYear( ) const; int GetMonth( ) const; int GetDay( ) const; int GetDuration ( ) const; bool IsValid ( ) const; void Input ( ); void Output ( ) const; private: DayOfYear m_startDOY; int m_nrDays; bool m_isValid; }; #endif