// Day.cpp: implementation of the CDay class. // ////////////////////////////////////////////////////////////////////// #include "Day.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CDay::CDay() { } CDay::CDay(int nh) { n_hours=nh; // Number of hours. } CDay::~CDay() { } int CDay::count() // hours { return n_hours; // Number of hours. }