blob: ade7f9832e03ec69d8e1bda55e43440918ac8b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|