summaryrefslogtreecommitdiff
path: root/ex05/Harl.hpp
diff options
context:
space:
mode:
authorDominik Kaiser2025-02-12 11:36:46 +0100
committerDominik Kaiser2025-02-12 11:36:46 +0100
commit368088666e4de671a3309a49cdd0dc6b2f30c003 (patch)
treec17f77641dae37d97d60aec3d1267b99fc765467 /ex05/Harl.hpp
parent3f86c0bd10d1bb49a828067faf5f5169c79975e5 (diff)
downloadcpp01-368088666e4de671a3309a49cdd0dc6b2f30c003.tar.gz
cpp01-368088666e4de671a3309a49cdd0dc6b2f30c003.zip
Implement Harl
Diffstat (limited to 'ex05/Harl.hpp')
-rw-r--r--ex05/Harl.hpp14
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