You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Harl.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/06/17 11:13:50 by narnaud #+# #+# */
|
|
/* Updated: 2022/06/20 09:30:38 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
using std::string;
|
|
|
|
class Harl {
|
|
|
|
public:
|
|
|
|
Harl (void);
|
|
~Harl (void);
|
|
void _complain(string level);
|
|
|
|
private:
|
|
void _debug(void);
|
|
void _info(void);
|
|
void _warning(void);
|
|
void _error(void);
|
|
|
|
};
|
|
|