/* ************************************************************************** */ /* */ /* :::::::: */ /* Harl.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/23 15:06:27 by whaffman #+# #+# */ /* Updated: 2025/04/02 11:26:20 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #include class Harl { private: static std::string levels[4]; static void (Harl::*levelFunc[4])(); void info(); void debug(); void warning(); void error(); public: Harl(); ~Harl(); void complain(std::string level); };