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/B.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cpp06/ex02/B.cpp (limited to 'cpp06/ex02/B.cpp') diff --git a/cpp06/ex02/B.cpp b/cpp06/ex02/B.cpp new file mode 100644 index 0000000..133e61d --- /dev/null +++ b/cpp06/ex02/B.cpp @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* B.cpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/11/18 09:18:09 by charles #+# #+# */ +/* Updated: 2020/11/18 09:21:15 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "B.hpp" + +B::B() {} +B::B(B const& other) { (void)other; } +B& B::operator=(B const& other) { (void)other; return *this; } +B::~B() {} -- cgit