aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/Base.cpp
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-11-18 10:30:31 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-11-18 10:30:31 +0100
commit6169d697a5be59426d034b878bffc848de49491d (patch)
treeea339e67a4814a04ada4c5c0a1c3cdfc2bc7b6fa /cpp06/ex02/Base.cpp
parent452e6bfa7bb4bca75dc4659bf9d707101b411977 (diff)
downloadpiscine_cpp-6169d697a5be59426d034b878bffc848de49491d.tar.gz
piscine_cpp-6169d697a5be59426d034b878bffc848de49491d.tar.bz2
piscine_cpp-6169d697a5be59426d034b878bffc848de49491d.zip
Added cpp06/ex01 and ex02
Diffstat (limited to 'cpp06/ex02/Base.cpp')
-rw-r--r--cpp06/ex02/Base.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp06/ex02/Base.cpp b/cpp06/ex02/Base.cpp
new file mode 100644
index 0000000..0a601fd
--- /dev/null
+++ b/cpp06/ex02/Base.cpp
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Base.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <me@cacharle.xyz> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/11/18 09:20:02 by charles #+# #+# */
+/* Updated: 2020/11/18 09:21:22 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "Base.hpp"
+
+Base::Base() {}
+Base::Base(Base const& other) { (void)other; }
+Base& Base::operator=(Base const& other) { (void)other; return *this; }
+Base::~Base() {}