aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/Base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp06/ex02/Base.hpp')
-rw-r--r--cpp06/ex02/Base.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp06/ex02/Base.hpp b/cpp06/ex02/Base.hpp
index c70706a..0ec092b 100644
--- a/cpp06/ex02/Base.hpp
+++ b/cpp06/ex02/Base.hpp
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/15 09:56:24 by charles #+# #+# */
-/* Updated: 2020/04/15 09:56:41 by charles ### ########.fr */
+/* Updated: 2020/11/18 09:16:48 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -16,6 +16,9 @@
class Base
{
public:
+ Base();
+ Base(Base const& other);
+ Base& operator=(Base const& other);
virtual ~Base();
};