/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Base.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/15 09:56:24 by charles #+# #+# */ /* Updated: 2020/11/18 09:16:48 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef BASE_HPP # define BASE_HPP class Base { public: Base(); Base(Base const& other); Base& operator=(Base const& other); virtual ~Base(); }; #endif