diff options
| author | Dominik Kaiser | 2025-02-12 11:36:46 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-12 11:36:46 +0100 |
| commit | 368088666e4de671a3309a49cdd0dc6b2f30c003 (patch) | |
| tree | c17f77641dae37d97d60aec3d1267b99fc765467 /ex05/Harl.hpp | |
| parent | 3f86c0bd10d1bb49a828067faf5f5169c79975e5 (diff) | |
| download | cpp01-368088666e4de671a3309a49cdd0dc6b2f30c003.tar.gz cpp01-368088666e4de671a3309a49cdd0dc6b2f30c003.zip | |
Implement Harl
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 |
