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