diff options
Diffstat (limited to 'ex05/Harl.hpp')
| -rw-r--r-- | ex05/Harl.hpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ex05/Harl.hpp b/ex05/Harl.hpp index a0b1f30..ade7f98 100644 --- a/ex05/Harl.hpp +++ b/ex05/Harl.hpp @@ -6,11 +6,23 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/12 10:36:43 by dkaiser #+# #+# */ -/* Updated: 2025/02/12 10:37:00 by dkaiser ### ########.fr */ +/* Updated: 2025/02/12 11:36:33 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HARL_H_ #define HARL_H_ +#include <string> +class Harl +{ + public: + void complain(std::string level); + private: + void debug(void); + void info(void); + void warning(void); + void error(void); +}; + #endif |
