/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Harl.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/17 11:13:50 by narnaud #+# #+# */ /* Updated: 2022/06/17 13:12:45 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include using std::string; class Harl { public: Harl (void); Harl (Harl const & src); ~Harl (void); Harl & operator= (Harl const & src); void _complain(string level); private: void _debug(void); void _info(void); void _warning(void); void _error(void); };