subject

#ifndef _NONTECHNICAL_H #define _NONTECHNICAL_H
#include
using namespace std;
#include "employee. h"
// Q1a: Create Nontechnical class (5 points)
// Part 1: Create a child class of the Employee class named 'Nontechnical'
class Nontechnical : public Employee {
// Part2: Declare constructor which accepts the same 3 parameters as the parent class Employee's constructor.
// Pass the 3 parameters to the super constructor of the Employee class.
public:
Nontechnical(string empName, double salary, empType employeeType);
// Part 3: Re-declare the method displayEmployee (virtual method found inside of parent class Employee)
void displayEmployee();
}
#endif // _NONTECHNICAL_H#pragma once
#ifndef _TECHNICAL_H_
#define _TECHNICAL_H_
#include
using namespace std;
#include "employee. h"
// Q1b: Create Technical class (5 points)
// Part 1: Create a child class of the Employee class named 'Technical'
class Technical : public Employee {
// Part2: Declare constructor which accepts the same 3 parameters as the parent class Employee's constructor.
// Pass the 3 parameters to the super constructor of the Employee class.
public:
Technical(string empName, double salary, empType employeeType);
// Part 3: Re-declare the method displayEmployee (virtual method found inside of parent class Employee)
void displayEmployee();
}
#endif // _TECHNICAL_H_

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 15:30
In a compound condition, both conditions on either side of the logical operator and must be true for the overall condition to be true. a: true b: false
Answers: 1
question
Computers and Technology, 22.06.2019 22:20
Avariable of the data type arrays is storing 10 quantities. what is true about these quantities? a. the quantities all have different characteristics. b. the quantities all have the same characteristics. c. five quantities have the same and five have different characteristics. d. it is necessary for all quantities to be integers. e. it is necessary for all quantities to be characters.
Answers: 2
question
Computers and Technology, 23.06.2019 02:00
Which software would you use to create a print design? a. illustrator b. audacity c. reaper d. dreamweaver
Answers: 2
question
Computers and Technology, 23.06.2019 09:30
Light travels at a speed of 186,000 miles a second. the distance light travels in a year is 5,865,690,000,000 miles/year 5,865,695,000,000 miles/year 58,656,950,000,000 miles/year 6,789,000,0000 miles/year
Answers: 1
You know the right answer?
#ifndef _NONTECHNICAL_H #define _NONTECHNICAL_H
#include
using namespace std;
#i...
Questions
question
Mathematics, 02.05.2021 01:20
question
Social Studies, 02.05.2021 01:30