diff options
| author | Syndamia <kamen@syndamia.com> | 2024-05-10 18:49:43 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-05-10 18:49:43 +0300 |
| commit | c6fae5f1a0cc8394b1de3b671f07de7b3d677c59 (patch) | |
| tree | ec155a5b5218f44540d75f09fa1d67f813796cec /week12/Exercise3 | |
| parent | 3e6537ee27aa23e9cb507d72c27d1d48d2c043d6 (diff) | |
| download | oop-2023-solutions-c6fae5f1a0cc8394b1de3b671f07de7b3d677c59.tar oop-2023-solutions-c6fae5f1a0cc8394b1de3b671f07de7b3d677c59.tar.gz oop-2023-solutions-c6fae5f1a0cc8394b1de3b671f07de7b3d677c59.zip | |
[w12] Fixed missing public keyword
Diffstat (limited to 'week12/Exercise3')
| -rw-r--r-- | week12/Exercise3/Telephone.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/week12/Exercise3/Telephone.h b/week12/Exercise3/Telephone.h index 0277ac3..e4aa7b2 100644 --- a/week12/Exercise3/Telephone.h +++ b/week12/Exercise3/Telephone.h @@ -2,6 +2,7 @@ #include "MobileDevice.h" class Telephone : public MobileDevice { +public: virtual MobileDevice* clone() override; virtual void Show() override; }; |
