/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* B.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/15 09:57:12 by charles #+# #+# */ /* Updated: 2020/11/18 09:22:13 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef B_HPP # define B_HPP # include "Base.hpp" class B : public Base { public: B(); B(B const& other); B& operator=(B const& other); virtual ~B(); }; #endif