/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Harl.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/27 15:08:34 by fgras-ca #+# #+# */ /* Updated: 2023/12/27 15:11:58 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HARL_HPP # define HARL_HPP #include #include class Harl { public: Harl(); ~Harl(); void complain(std::string level); private: void debug(void); void info(void); void warning(void); void error(void); }; #endif