diff options
| author | Dominik Kaiser | 2025-02-12 13:28:42 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-12 13:28:42 +0100 |
| commit | 92a665752945aa7731ad51fa66ecac768064c51e (patch) | |
| tree | 0f98445db173155287411578baeea8d80ad85112 /ex06/Harl.hpp | |
| parent | 368088666e4de671a3309a49cdd0dc6b2f30c003 (diff) | |
| download | cpp01-92a665752945aa7731ad51fa66ecac768064c51e.tar.gz cpp01-92a665752945aa7731ad51fa66ecac768064c51e.zip | |
Copy files from ex05 to ex06
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 |
