/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Harl.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 17:36:19 by erey-bet #+# #+# */ /* Updated: 2023/04/20 18:00:04 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HARL_HPP # define HARL_HPP # include class Harl { public: Harl(void); void complain(std::string level); private: void debug(void); void info(void); void warning(void); void error(void); }; #endif