Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

personType.h

image text in transcribed

personType.cpp

image text in transcribed

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

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

Database Concepts

Authors: David M. Kroenke, David J. Auer

7th edition

133544621, 133544626, 0-13-354462-1, 978-0133544626

More Books

Students also viewed these Databases questions