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