diff options
Diffstat (limited to 'week12/Exercise3/MobileDevice.h')
| -rw-r--r-- | week12/Exercise3/MobileDevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/week12/Exercise3/MobileDevice.h b/week12/Exercise3/MobileDevice.h index b9de538..958eb86 100644 --- a/week12/Exercise3/MobileDevice.h +++ b/week12/Exercise3/MobileDevice.h @@ -9,6 +9,7 @@ public: virtual ~MobileDevice() = default; virtual void Show() = 0; + virtual MobileDevice* clone() = 0; bool CanAccept(const char* hyperMessage); void Accept(const char* hyperMessage); }; |
