#ifndef INTERVAL_H #define INTERVAL_H #include "date.h" class interval { private: date start; //start of the interval date end; //end of the interval public: interval(const date& init_start, const date& init_end); ~interval(); void print() const; }; #endif