/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* 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() {}