aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise4/Company.h
diff options
context:
space:
mode:
Diffstat (limited to 'week12/Exercise4/Company.h')
-rw-r--r--week12/Exercise4/Company.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/week12/Exercise4/Company.h b/week12/Exercise4/Company.h
new file mode 100644
index 0000000..63bcb64
--- /dev/null
+++ b/week12/Exercise4/Company.h
@@ -0,0 +1,13 @@
+#pragma once
+#include "Person.h"
+#include "Employee.h"
+
+class Company {
+ Employee* employees[128];
+
+public:
+ ~Company();
+
+ float PaymentDifference();
+ void WorkloadByAge();
+};