/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* harl.class.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/07/15 19:42:56 by bchanot #+# #+# */ /* Updated: 2025/07/16 13:16:06 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HARL_CLASS_H # define HARL_CLASS_H #include #include class Harl { private: void debug(void); void info(void); void warning(void); void error(void); public: void complain(std::string level); static std::array getLevels(void); }; #endif