#include using namespace std; class Time//store times of the day. Private members are hour, minute, second { public: void setHour(int ho)//Function to set hour { } void setMinute(int mi)//Function to set minute { } void setSecond(int se)//Function to set second { } int getHour()//Function that returns hour stored in object { } int getMinute()//Function that returns minute stored in object { } int getSecond()//Function that returns second stored in object { } void showTime24()//How do we show the time? { } private://Here are the private members int hour; //Should be between 0 and 23. int minute;//Should be between 0 and 59 int second;//Should be between 0 and 59 }; int main() { Time now; //Declares now to be of class Time. now.setHour(13);//Sets hour of now to 13 now.setMinute(14);//Sets minute of now to 14 now.setSecond(15);//Sets second of now to 15 now.showTime12();//shows time stored in now }