1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
#include<iostream>
#include<string>
using namespace std;
class PersonType
{
public:
void print() const;
void SetName(string first, string last);
string getFirstName() const;
string getLastName() const;
PersonType(string first = "", string last = "");
private:
string FirstName, LastName;
};
void PersonType :: print() const
{
cout << FirstName << " " << LastName << endl;
}
void PersonType :: SetName(string first, string last)
{
FirstName = first;
LastName = last;
cout << "Please Enter Your FIRST Name.\n";
cin >> first;
cout << "Please Enter Your LAST Name.\n";
cin >> last;
}
string PersonType :: getFirstName() const
{
return FirstName;
}
string PersonType :: getLastName() const
{
return LastName;
}
PersonType :: PersonType(string first, string last)
{
FirstName = first;
LastName = last;
}
class DoctorType : public PersonType
{
public:
void SetName(string first, string last);
void SetSpeciality(string Special);
string getSpeciality() const;
string getFirstName() const;
string getLastName() const;
DoctorType(string Special = "");
private:
string FirstName, LastName, Speciality;
};
void DoctorType :: SetSpeciality(string Special)
{
Speciality = Special;
cout << "Please Enter Your SPECIALITY.\n";
cin >> Special;
}
string DoctorType :: getSpeciality() const
{
return Speciality;
}
DoctorType :: DoctorType(string Special = "")
{
Speciality = Special;
}
class DateType
{
public:
void printDate() const;
void SetDate(int Day, int Month, int Year);
int getTheDay() const;
int getTheMonth() const;
int getTheYear() const;
DateType(int Day,int Month, int Year);
private:
int TheDay, TheYear, TheMonth;
};
void DateType :: printDate() const
{
cout << TheDay << " " << TheMonth << " " << TheYear << endl;
}
void DateType :: SetDate(int Day, int Month, int Year)
{
TheDay = Day;
TheMonth = Month;
TheYear = Year;
cout << "Please Enter The Day (DD).\n";
cin >> Day;
cout << "Please Enter The Month (MM).\n";
cin >> Month;
cout << "Please Enter The Year (YYYY).\n";
cin >> Year;
}
int DateType :: getTheDay() const
{
return TheDay;
}
int DateType :: getTheMonth() const
{
return TheMonth;
}
int DateType :: getTheYear() const
{
return TheYear;
}
DateType::DateType(int Day, int Month, int Year)
{
TheDay = Day;
TheMonth = Month;
TheYear = Year;
}
class DateOfBirthType : public DateType
{
public:
void printDOB() const;
void SetDOB(int Day, int Month, int Year);
int getTheDay() const;
int getTheMonth() const;
int getTheYear() const;
private:
int TheDay, TheYear, TheMonth;
};
void DateOfBirthType :: printDOB() const
{
cout << "Patients Date Of Birth: " << TheDay << "/" << TheMonth << "/" << TheYear << endl;
}
void DateOfBirthType :: SetDOB(int Day, int Month, int Year)
{
TheDay = Day;
TheMonth = Month;
TheYear = Year;
cout << "Enter The Patients DAY Of Birth.\n";
cin >> Day;
cout << "Enter The Patients MONTH Of Birth.\n";
cin >> Month;
cout << "Enter The Patients YEAR Of Birth.\n";
cin >> Year;
}
class AdmittanceDateType : public DateType
{
public:
void printAdmittanceDate() const;
void SetAdmittanceDate(int Day, int Month, int Year);
int getTheDay() const;
int getTheMonth() const;
int getTheYear() const;
private:
int TheDay, TheYear, TheMonth;
};
void AdmittanceDateType :: printAdmittanceDate() const
{
cout << "The Patients Admittance Date: " << TheDay << " " << TheMonth << " " << TheYear << endl;
}
void AdmittanceDateType :: SetAdmittanceDate(int Day, int Month, int Year)
{
TheDay = Day;
TheMonth = Month;
TheYear = Year;
cout << "Enter The Patients DAY Of Admittance.\n";
cin >> Day;
cout << "Enter The Patients MONTH Of Admittance.\n";
cin >> Month;
cout << "Enter The Patients YEAR Of Admittance.\n";
cin >> Year;
}
class DischargeDateType : public DateType
{
public:
void printDischargeDate() const;
void SetDischargeDate(int Day, int Month, int Year);
int getTheDay() const;
int getTheMonth() const;
int getTheYear() const;
private:
int TheDay, TheYear, TheMonth;
};
void DischargeDateType :: printDischargeDate() const
{
cout << "The Patients Discharge Date: " << TheDay << " " << TheMonth << " " << TheYear << endl;
}
void DischargeDateType :: SetDischargeDate(int Day, int Month, int Year)
{
TheDay = Day;
TheMonth = Month;
TheYear = Year;
cout << "Enter The Patients DAY Of Discharge.\n";
cin >> Day;
cout << "Enter The Patients MONTH Of Discharge.\n";
cin >> Month;
cout << "Enter The Patients YEAR Of Discharge.\n";
cin >> Year;
}
class PatientType : public PersonType
{
void print() const;
void SetName(string first, string last);
void SetPatientID(int ID);
void SetPatientAge(int Age);
int getPatientAge() const;
int getPatientID() const;
string getFirstName() const;
string getLastName() const;
PatientType(string first = "", string last = "");
PatientType(int ID = 0);
PatientType(int Age = 0);
private:
string FirstName, LastName;
int PatientID, PatientAge;
};
int PatientType::getPatientID() const
{
return PatientID;
}
int PatientType::getPatientAge() const
{
return PatientAge;
}
PatientType::PatientType(string first = "", string last = "")
{
FirstName = first;
LastName = last;
}
PatientType::PatientType(int ID = 0)
{
PatientID = ID;
}
PatientType::PatientType(int Age = 0)
{
PatientID = Age;
}
int main()
{
int choice;
PersonType *Person = NULL;
cout << "Who would you like to input information for?\n";
cout << " 1 - Doctor\n";
cout << " 2 - Patient\n";
cin >> choice;
if (choice == 1)
{
Person = new DoctorType();
Person->SetName();
Person->SetSpeciality();
}
else if (choice == 2)
{
Person = new PatientType();
Person->;
Person->;
}
return 0;
}
|