Home > C/C++ > The Extended Time Zone Class

The Extended Time Zone Class

November 15th, 2009

Create a new project which consists of two classes; the base Time class and a derived extTime class.

The base class should have data members that are used to represent the hour and the minute both of type integer. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create and define member functions

Create a function for each of the operations listed below:

Base class:

set the time
return the time
print the time
increment the hour
increment the minute
a default constructor and a constructor with parameters.
Derived class: should have (in addition to the classes above) its own

print which prints the time zone in addition to the time
constructor
STEP 3: Construct Main Method

Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.


The Extended Time Zone Class

Categories: C/C++ Tags: , , , , , ,