/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* C.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/03/01 10:28:50 by aortigos #+# #+# */ /* Updated: 2026/03/01 10:28:50 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef C_HPP # define C_HPP # include # include "../Base/Base.hpp" class C : public Base { private: public: ~C(); }; #endif