Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using classes, design an online address book to keep track of the names, addresses, phone numbers, and dates of birth of family members, close friends,

Using classes, design an online address book to keep track of the names, addresses, phone numbers, and dates of birth of family members, close friends, and certain business associates. Your program should be able to handle a maximum of 500 entries.

  1. Define a class addressType that can store a street address, city, state, and ZIP code. Use the appropriate functions to print and store the address. Also, use constructors to automatically initialize the member variables.

  2. Define a class extPersonType using the class personType (as defined in Example 10-10, Chapter 10), the class dateType(as designed in this chapters Programming Exercise 2), and the class addressType. Add a member variable to this class to classify the person as a family member, friend, or business associate. Also, add a member variable to store the phone number. Add (or override) the functions to print and store the appropriate information. Use constructors to automatically initialize the member variables.

  3. Define the class addressBookType using the previously defined classes. An object of the type addressBookType should be able to process a maximum of 500 entries.

The program should perform the following operations:

  • Load the data into the address book from a disk (Ch11_Ex5Data.txt).
  • Sort the address book by last name.
  • Search for a person by last name (option 1).
  • Print the address, phone number, and date of birth (if it exists) of a given person (option 2).
  • Print the names of the people whose birthdays are in a given month (option 3).
  • Print the names of all the people between two last names (option 4).
  • Depending on the users request, print the names of all family members, friends, or business associates (option 5).
  • Print the entire address book (option 6).
  • Save the sorted address book to a file (option 7).
  • Terminate the program (option 9).

I was given the following files dateType.h

#ifndef date_H

#define date_H

class dateType

{

public:

void setDate(int month, int day, int year);

//Function to set the date.

//The member variables dMonth, dDay, and dYear are set

//according to the parameters

//Postcondition: dMonth = month; dDay = day;

// dYear = year

int getDay() const;

//Function to return the day.

//Postcondition: The value of dDay is returned.

int getMonth() const;

//Function to return the month.

//Postcondition: The value of dMonth is returned.

int getYear() const;

//Function to return the year.

//Postcondition: The value of dYear is returned.

void printDate() const;

//Function to output the date in the form mm-dd-yyyy.

dateType(int month = 1, int day = 1, int year = 1900);

//Constructor to set the date

//The member variables dMonth, dDay, and dYear are set

//according to the parameters

//Postcondition: dMonth = month; dDay = day;

// dYear = year

//If no values are specified, the default values are

//used to initialize the member variables.

private:

int dMonth; //variable to store the month

int dDay; //variable to store the day

int dYear; //variable to store the year

};

#endif

dateType.cpp

#include

#include "dateType.h"

using namespace std;

void dateType::setDate(int month, int day, int year)

{

dMonth = month;

dDay = day;

dYear = year;

}

int dateType::getDay() const

{

return dDay;

}

int dateType::getMonth() const

{

return dMonth;

}

int dateType::getYear() const

{

return dYear;

}

void dateType::printDate() const

{

cout << dMonth << "-" << dDay << "-" <

}

//constructor with parameter

dateType::dateType(int month, int day, int year)

{

dMonth = month;

dDay = day;

dYear = year;

}

personType.h

//personType.h

#ifndef H_personType

#define H_personType

#include

using namespace std;

class personType

{

public:

void print() const;

//Function to output the first name and last name

//in the form firstName lastName.

void setName(string first, string last);

//Function to set firstName and lastName according

//to the parameters.

//Postcondition: firstName = first; lastName = last

string getFirstName() const;

//Function to return the first name.

//Postcondition: The value of the firstName is returned.

string getLastName() const;

//Function to return the last name.

//Postcondition: The value of the lastName is returned.

personType(string first = "", string last = "");

//constructor

//Sets firstName and lastName according to the parameters.

//The default values of the parameters are empty strings.

//Postcondition: firstName = first; lastName = last

private:

string firstName; //variable to store the first name

string lastName; //variable to store the last name

};

#endif

personType.cpp

/personTypeImp.cpp

#include

#include

#include "personType.h"

using namespace std;

void personType::print() const

{

cout << firstName << " " << lastName;

}

void personType::setName(string first, string last)

{

firstName = first;

lastName = last;

}

string personType::getFirstName() const

{

return firstName;

}

string personType::getLastName() const

{

return lastName;

}

//constructor

personType::personType(string first, string last)

{

firstName = first;

lastName = last;

}

I need the files addressBookType.h, addressBookType.cpp, addressType.h, addressType.cpp, extPerson.h, extPerson.cpp, and a main.cpp file. I need the answer in C++. Thank You!

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

Step: 3

blur-text-image

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

Databases Illuminated

Authors: Catherine M. Ricardo, Susan D. Urban, Karen C. Davis

4th Edition

1284231585, 978-1284231588

More Books

Students also viewed these Databases questions

Question

How to solve maths problems with examples

Answered: 1 week ago

Question

Describe Table Structures in RDMSs.

Answered: 1 week ago