#include using namespace std; #include "someclass.h" // Added comment to test makefile Time::Time(int h, int m, int s) { hour = h; minute =m; second = s; } Time::Time() { hour =12; minute = 15; second = 0; } Time::~Time() { cout << "Time has stopped"; } void Time::setTime(int h, int m, int s) { hour = h; minute =m; second = s; } void Time::printMilitary() { cout <12) tempHour = hour-12; else tempHour = hour; cout <