Question
C++ please Given class Time below, declare a new class called Event. An Event class should have a start time and end time as private
C++ please
-
Given class Time below, declare a new class called Event. An Event class should have a start time and end time as private attributes, using the Time class. The accessor for these attributes should return the Time object. Mutators should be provided for both that accept a Time object to initialize the values. You do not need to provide a constructor or other methods.
class Time
{
private:
int hours;
int minutes;
int seconds;
public:
int getHours() { return hours; }
int getMinutes() { return minutes; }
int getSeconds() { return seconds; }
void setHours( int h ) { hours = h; }
void setMinutes( int m ) { minutes = m; }
void setSeconds( int s ) { seconds = s; }
Time() { }
Time(int h, int m, int s)
{
hours = h;
minutes = m;
seconds = s;
}
};
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started