aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise4/Developer.h
blob: aa5fec3e2bc989c9545be950a77f134ea5f4a0aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include "Employee.h"
#include "Person.h"

class Developer : public Employee, public Person {
	unsigned countProjects;
	unsigned countProjectsSoonRelease;

public:
	Developer& operator++();
	Developer& operator++(int);
	Developer& operator--();
	Developer& operator--(int);

	virtual float Workload() override;
};