diff options
Diffstat (limited to 'ex06/Harl.hpp')
| -rw-r--r-- | ex06/Harl.hpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ex06/Harl.hpp b/ex06/Harl.hpp new file mode 100644 index 0000000..ade7f98 --- /dev/null +++ b/ex06/Harl.hpp @@ -0,0 +1,28 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* Harl.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2025/02/12 10:36:43 by dkaiser #+# #+# */ +/* 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 |
