feat(ex05): it works

This commit is contained in:
Khaïs COLIN 2025-05-12 16:18:41 +02:00
parent 006ac94c7f
commit fd476b2c63
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
5 changed files with 133 additions and 0 deletions

19
ex05/Harl.hpp Normal file
View file

@ -0,0 +1,19 @@
#ifndef HARL_HPP
#define HARL_HPP
#include <string>
class Harl {
public:
void complain(std::string level);
private:
void debug(void);
void info(void);
void warning(void);
void error(void);
void wrongLevel(void);
};
#endif