Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning ASP.NET 2.0 And Databases

Authors: John Kauffman, Bradley Millington

1st Edition

0471781347, 978-0471781349

More Books

Students also viewed these Databases questions