diff options
Diffstat (limited to 'week11/Exercise02/Employee.h')
| -rw-r--r-- | week11/Exercise02/Employee.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/week11/Exercise02/Employee.h b/week11/Exercise02/Employee.h new file mode 100644 index 0000000..7be3574 --- /dev/null +++ b/week11/Exercise02/Employee.h @@ -0,0 +1,10 @@ +#pragma once + +class Employee { + float paycheck; + +protected: + char name[512]; + char position[128]; + char department[64]; +}; |
