31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Harl.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/20 17:36:19 by erey-bet #+# #+# */
|
|
/* Updated: 2023/04/20 18:00:04 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef HARL_HPP
|
|
# define HARL_HPP
|
|
|
|
# include <iostream>
|
|
|
|
class Harl {
|
|
public:
|
|
Harl(void);
|
|
void complain(std::string level);
|
|
|
|
private:
|
|
void debug(void);
|
|
void info(void);
|
|
void warning(void);
|
|
void error(void);
|
|
};
|
|
|
|
#endif
|