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