Question: C++ source code. Instructions: In this assignment, you will design various classes and write a program to computerize the billing system of a hospital. Download

C++ source code.

Instructions:

In this assignment, you will design various classes and write a program to computerize the billing system of a hospital.

  1. Download the instructions document.
  2. Download the personType class files:
    • personType.h
    • personType.cpp
  3. Complete the steps outlined in the instructions document.
  4. Submit your source code (.h and .cpp files) to the drop-box. You may submit a .zip file containing all your code so that you only need to upload one file to the drop box.
  5. Copy your code to a Word document and submit this document to the drop-box for Turn-it-in originality checking. Plagiarism is a violation of SPC's academic policy and will not be tolerated.
  6. Review the rubric for this assignment in order to understand how your work will be evaluated

Instruction Document

C++ source code. Instructions: In this assignment, you will design various classes

personType.h

and write a program to computerize the billing system of a hospital.

personType.cpp

Download the instructions document. Download the personType class files: personType.h personType.cpp Complete

Hospital Billing System In this assignment, you will design various classes and write a program to computerize the billing system of a hospital. Begin by downloading the personType class (.h and .cpp files). 1. Design the class doctorType, inherited from the class personType, with an additional data member to store a doctor's specialty. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 2. Design the class billType with data members to store a patient's ID and a patient's hospital charges, such as pharmacy charges for medicine, doctor's fee, and room charges. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 3. Design the class patientType, inherited from the class personType, with additional data members to store a patient's ID, age, date of birth, attending physician's name, the date when the patient was admitted in the hospital, and the date when the patient was discharged from the hospital. (Use the class dateType to store the date of birth, admit date, discharge date, and the class doctorType to store the attending physician's name. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 4. Write a program to test your classes. To hand in: Submit your source code (.h and .cpp files) to the drop-box. You may submit a .zip file containing all your code so that you only need to upload one file to the drop box. #include #include using namespace std; class personType public: //Function to output the first name and last name //in the form firstName lastName. void print) const; //Function to set firstName and lastName according //to the parameters. //Postcondition: firstName = first; lastName = last void setName(string first, string last); //Function to return the first name. //Postcondition: The value of firstName is returned. string getFirstName() const; //Function to return the last name. //Postcondition: The value of lastName is returned. string getLastName() const; //Constructor // Sets firstName and lastName according to the parameters. //The default values of the parameters are null strings. //Postcondition: firstName = first; lastName = last personType(string first = "", string last = ""); private: string firstName; string lastName; //variable to store the first name //variable to store the last name }; #include "personType.h" void personType: :print() const cout

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!