feat(ex06): it works
This commit is contained in:
parent
3fa6069da8
commit
bf61ec6e5a
5 changed files with 146 additions and 0 deletions
19
ex06/Harl.hpp
Normal file
19
ex06/Harl.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue