aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise03/WashingMachine.h
diff options
context:
space:
mode:
Diffstat (limited to 'week11/Exercise03/WashingMachine.h')
-rw-r--r--week11/Exercise03/WashingMachine.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/week11/Exercise03/WashingMachine.h b/week11/Exercise03/WashingMachine.h
new file mode 100644
index 0000000..8915393
--- /dev/null
+++ b/week11/Exercise03/WashingMachine.h
@@ -0,0 +1,9 @@
+#pragma once
+#include "Electronics.h"
+
+class WashingMachine : Electronics {
+ unsigned maxLaundryWeight;
+
+public:
+ virtual void Print() override;
+};