aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/B.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp06/ex02/B.hpp')
-rw-r--r--cpp06/ex02/B.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp06/ex02/B.hpp b/cpp06/ex02/B.hpp
index aeac82e..c9e4a44 100644
--- a/cpp06/ex02/B.hpp
+++ b/cpp06/ex02/B.hpp
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/15 09:57:12 by charles #+# #+# */
-/* Updated: 2020/04/15 10:07:52 by charles ### ########.fr */
+/* Updated: 2020/11/18 09:22:13 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -17,6 +17,11 @@
class B : public Base
{
+public:
+ B();
+ B(B const& other);
+ B& operator=(B const& other);
+ virtual ~B();
};
#endif