/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* C.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/11/18 09:18:09 by charles #+# #+# */ /* Updated: 2020/11/18 09:21:01 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "C.hpp" C::C() {} C::C(C const& other) { (void)other; } C& C::operator=(C const& other) { (void)other; return *this; } C::~C() {}