aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise02/Employee.h
blob: 7be35742cde486faf667c18042dc5e70eb2024c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

class Employee {
	float paycheck;

protected:
	char name[512];
	char position[128];
	char department[64];
};