/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Base.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/01/05 14:56:40 by bchanot #+# #+# */ /* Updated: 2026/01/06 14:17:06 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef BASE_HPP # define BASE_HPP # include # include class Base { public: virtual ~Base() {};}; class A : public Base {}; class B : public Base {}; class C : public Base {}; #endif /* ************************************************************ BASE_H */