Need help with classes

Hi, I don't know how to properly access different classes within the program. Can someone look at my program and tell me what I'm doing wrong? I'm getting a bunch of errors.

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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
  #include <iostream>
#include <string>
#include <iomanip>
#include <sstream>


using namespace std;
string GetInput(string);
class Benefit{
private:
	string healthInsurance;
	double lifeInsurance;
	int vacationDays;

public:
	Benefit();
	Benefit(string healthInsurance, double lifeInsurance, int vacationDays);

	void displayBenefit();
	string getHealthInsurance();
	void setHealthInsurance(string heaIns);
	double getLifeInsurance();
	void setLifeInsurance(double lifeIns);
	int getVacationDays();
	void setVacationDays(int vacDays);

};


Benefit::Benefit(){
	healthInsurance = "Not Available";
	lifeInsurance = 0;
	vacationDays = 0;
}

Benefit::Benefit(string healthInsurance, double lifeInsurance, int vacationDays){
	this->healthInsurance = healthInsurance;
	this->lifeInsurance = lifeInsurance;
	this->vacationDays = vacationDays;
}
//Benefit::Benefit(Benefit &myBenefit){
	//this->healthInsurance.myBenefit.healthInsurance;
	//this->lifeInsurance.myBenefit.lifeInsurance;
	//this->vacationDays.myBenefit.vacationDays;
//}

void Benefit::displayBenefit(){
		cout << "\nBenefit Information" << endl;
		cout << "________________________________" << endl;
		cout << "Health Insurance Company: " << getHealthInsurance() << endl;
		cout << "Life Insurance Amount: " << setprecision(2) << showpoint << fixed << getLifeInsurance() << endl;
		cout << "Vacation Days: " << getVacationDays() << endl;
}

string Benefit::getHealthInsurance(){
	return healthInsurance;
}

void Benefit::setHealthInsurance(string heaIns){
	this->healthInsurance = heaIns;
}

double Benefit::getLifeInsurance(){
	return lifeInsurance;
}

void Benefit::setLifeInsurance(double lifeIns){
	this->lifeInsurance = lifeIns;

}
int Benefit::getVacationDays(){
	return vacationDays;
}

void Benefit::setVacationDays(int vacDays){
	this->vacationDays = vacDays;
}

//class iEmployee {
//public:
	//virtual double calculatePay() = 0;
//};

class Employee {
	int numEmployees = 0;
	
protected:
	string firstName;
	string lastName;
	char gender;
	int dependents;
	double annualSalary;
	Benefit Benefit;
	
	
public:
	
	Employee();
	Employee(string firstName, string lastName, char gender, int dependents, double salary);
	string getFirstName();
	void setFirstName(string firstName);
	string getLastName();
	void setLastName(string lastName);
	char getGender();
	void setGender(char gen);
	int getDependents();
	void setDependents(int dep);
	void setDependents(string dep);
	double getAnnualSalary();
	void setAnnualSalary(double salary);
	void setAnnualSalary(string salary);
	void displayEmployee();
	void setBenefit(Benefit ben);
	Benefit getBenefit();
	static int getNumEmployees();
	double calculatePay();
	
};
//int Employee::numEmployees = 0;

Employee::Employee() {
	firstName = "not given";
	lastName = "not given";
	gender = 'U';
	dependents = 0;
	annualSalary = 20000;
	numEmployees++;
}

Employee::Employee(string firstName, string lastName, char gender, int dependents, double salary)
{
	this->firstName = firstName;
	this->lastName = lastName;
	this->gender = gender;
	this->dependents = dependents;
	this->annualSalary = salary;
	numEmployees++;
}

int convertToInt(string thestring){
	int num;
	std::istringstream cin(thestring);
	cin >> num;
	return num;
}

double convertToDouble(string thestring) {
	double num;
	std::istringstream cin(thestring);
	cin >> num;
	return num;
}

string Employee::getFirstName() {
	return firstName;
}

string Employee::getLastName() {
	return lastName;
}

char Employee::getGender() {
	return gender;
}

int Employee::getDependents() {
	return dependents;
}

double Employee::getAnnualSalary() {
	return annualSalary;
}

void Employee::setFirstName(string firstName) {
	this->firstName = firstName;
}

void Employee::setLastName(string lastName) {
	this->lastName = lastName;
}

void Employee::setGender(char gen) {
	this->gender = gen;
}

void Employee::setDependents(int dep) {
	this->dependents = dep;
}

void Employee::setDependents(string dep) {
	int depInt = convertToInt(dep);
	this->dependents = depInt;
}

void Employee::setAnnualSalary(double salary) {
	this->annualSalary = salary;
}

void Employee::setAnnualSalary(string salary) {
	double salaryDouble = convertToDouble(salary);
	this->annualSalary = salaryDouble;
}

double Employee::calculatePay() {
	return annualSalary / 52.0;
}
Benefit Employee::getBenefit(){
	return Benefit;
}

void Employee::setBenefit(Benefit ben){
	string theString;
	string input;
	
	theString = GetInput("Life Insurance Amount");
	Benefit.setLifeInsurance(atof(input.c_str()));
	theString = GetInput("Vacation Days");
	Benefit.setVacationDays(atoi(input.c_str()));
	theString = GetInput("Health Insurance Company");
	Benefit.setHealthInsurance(input);
	
}


int Employee::getNumEmployees(){
	return numEmployees;
}

void Employee::displayEmployee() {
	cout << "First Name: \t" << firstName << "\n";
	cout << "Last Name:  \t" << lastName << "\n";
	cout << "Gender:\t\t" << gender << "\n";
	cout << "Dependents: \t" << dependents << "\n";
	cout << "Annual Salary:\t$" << annualSalary << "\n";
	cout << "Weekly Salary:\t$" << calculatePay() << endl;
	
	Benefit.displayBenefit();
	cout << endl << endl;
}



class Salaried :public Employee
{
private:
	const int MIN_MANAGEMENT_LEVEL;
	const int MAX_MANAGEMENT_LEVEL;
	const double BONUS_PERCENT;
	int managementLevel;
public:

	Salaried();
	Salaried(string firstName, string lastName, char gen, int dep, double sal, Benefit ben, int manLevel), 
	Salaried(double sal, int manLevel);
	double calculatePay();
	void displayEmployee();
	int getManagementLevel(int manLevel);
	void setManagementLevel();

};
Salaried::Salaried():Employee(),MAX_MANAGEMENT_LEVEL(), MAX_MANAGEMENT_LEVEL(), BONUS_PERCENT(){
	const int MIN_MANAGEMENT_LEVEL = 0;
	const int MAX_MANAGEMENT_LEVEL = 3;
	const int BONUS_PERCENT = 10;
	int managementLevel = 0;
}
	
Salaried::Salaried(string firstName, string lastName, char gen, int dep, double sal, Benefit ben, int manLevel) : Employee(firstName, lastName, gen, dep, sal, ben), MIN_MANAGEMENT_LEVEL(0), MAX_MANAGEMENT_LEVEL(3), BONUS_PERCENT(10)
{
	setManagementLevel = MIN_MANAGEMENT_LEVEL;
}
	
Salaried::Salaried(double sal, int manLevel){
	setManagementLevel(manLevel);
	setAnnualSalary(sal);
}
	
int Salaried::getManagementLevel(int manLevel){
	return managementLevel;
}
	
void Salaried::setManagementLevel(int manLevel){
	if (manLevel >= MIN_MANAGEMENT_LEVEL && manLevel <= MAX_MANAGEMENT_LEVEL)
		managementLevel = manLevel;
	else
	{
		managementLevel = MIN_MANAGEMENT_LEVEL;
	}
}
double Salaried::calculatePay(){
	double BONUS_PERCENT = managementLevel * .10;	}

void Salaried::displayEmployee(){
	Employee::displayEmployee();
	cout << "Salaried Employee:\t" << endl;
	cout << "Management Level:\t" << endl;
}




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
double Hourly::getHours(){
	return hours;
}
void Hourly::setHours(double hours){
	if (hours > MIN_HOURS && hours < MAX_HOURS)
	{
		this->hours = hours;
	}
	else if (hours <= MIN_HOURS)
	{
		this->hours = MIN_HOURS;
	}
	else
	{
		this->hours = MAX_HOURS;
	}
}
string Hourly::getCategory(){
	return category;
}

void Hourly::setCategory(string category){
	if (category == "full time" || category == "part time" || category == "temporary")
	{
		category = category;
	}
	else
	{
		category = "Not Available";
	}
}
void Hourly::displayEmployee(){
	Employee::displayEmployee();
	cout << "Hourly Employee: " << endl;
	cout << "Category: \t\t" << category << endl;
	cout << "Wage: \t\t" << wage << endl;
	cout << "Hours: \t\t" << hours << endl;

}


void DisplayDivider(string outputTitle)	{
	cout << "**************** " << outputTitle << " ****************" << endl;
}

void DisplayApplicationInformation(){
	cout << "Welcome to your first Object Oriented Program -- Employee ClassCIS247C.  Week 4 Lab" << endl;
	cout << "Name: " << endl;


}

string GetInput(string inputType){
	string strInput;
	cout << "Enter the " << inputType << ": ";
	cin >> strInput;
	return strInput;
}

int main()
{
	Employee* employee1 = new Employee();
	Benefit employee1;
	
	string input;
	char gen;
	int dep;
	double salary;
	Benefit ben;
	DisplayApplicationInformation();
	DisplayDivider("Employee 1");
	input = GetInput("First Name");
	employee1->setFirstName(input);
	input = GetInput("Last Name");
	employee1->setLastName(input);
	cout << "Please enter your Gender: ";
	cin >> gen;
	employee1->setGender(gen);
	input = GetInput("Dependents");
	employee1->setDependents(input);
	input = GetInput("Annual Salary");
	employee1->setAnnualSalary(input);
	input = getBenefit();
	employee1->setBenefit(ben);
	//input = GetInput("Life Insurance Amount");
	//employee1->Benefit.setLifeInsurance(atof(input.c_str()));
	//input = GetInput("Vacation Days");
	//employee1->Benefit.setVacationDays(atoi(input.c_str()));
	//input = GetInput("Health Insurance Company");
	//employee1->Benefit.setHealthInsurance(input);

	DisplayDivider("Employee Information");
	employee1->displayEmployee();
	//employee1->getNumEmployees();
	
	cout << "Total employees: " << employee1->getNumEmployees() << endl;
	
	
	DisplayDivider("Employee 2");
	//Employee* employee2 = new Employee("Mary", "Noia", 'F', 5, 24000.0);

	Employee* employee2 = new Employee();
	//employee2->Benefit = Benefit("Washington Mutual", 500000, 7);
	Benefit employee2;
	Salaried employee2;
	
	input = GetInput("First Name");
	employee2->setFirstName(input);
	input = GetInput("Last Name");
	employee2->setLastName(input);
	cout << "Please enter your Gender: ";
	cin >> gen;
	employee2->setGender(gen);
	input = GetInput("Dependents");
	employee2->setDependents(input);
	input = GetInput("Annual Salary");
	employee2->setAnnualSalary(input);
	input = GetInput("Management Level");
	employee2->setManagementLevel(input);
	input = getBenefit();
	employee2->setBenefit(ben);

	DisplayDivider("Employee Information");

	employee2->displayEmployee();


	cout << "Total employees: " << employee2->getNumEmployees() << endl;
	DisplayDivider("Employee 3");
	

	Employee* employee3 = new Employee();
	
	Benefit employee3;
	Salaried employee3;

	input = GetInput("First Name");
	employee3->setFirstName(input);
	input = GetInput("Last Name");
	employee3->setLastName(input);
	cout << "Please enter your Gender: ";
	cin >> gen;
	employee3->setGender(gen);
	input = GetInput("Dependents");
	employee3->setDependents(input);
	input = GetInput("Annual Salary");
	employee3->setAnnualSalary(input);
	input = GetInput("Management Level");
	employee3->setManagementLevel(input);
	input = GetInput("Wage");
	employee3->setWage(atof(input.c_str()));
	input = GetInput("Category");
	employee3->setCategory;
	
	input = getBenefit();    
	employee3->setBenefit(ben);

	DisplayDivider("Employee Information");

	employee3->displayEmployee();


	cout << "Total employees: " << employee3->getNumEmployees() << endl;
	system("pause");
	return 0;
}
Last edited on
Topic archived. No new replies allowed.