From 6169d697a5be59426d034b878bffc848de49491d Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 18 Nov 2020 10:30:31 +0100 Subject: Added cpp06/ex01 and ex02 --- cpp06/ex02/Base.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cpp06/ex02/Base.cpp (limited to 'cpp06/ex02/Base.cpp') 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 +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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() {} -- cgit