/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Base.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/03/01 10:28:47 by aortigos #+# #+# */ /* Updated: 2026/03/01 10:28:47 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef BASE_HPP # define BASE_HPP # include # include // rand class Base { private: public: virtual ~Base(); }; Base *generate(); void identify(Base *p); void identify(Base &p); #endif