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

  1. 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!