1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_01/ex05/harl.hpp

29 lines
1.1 KiB
C++
Raw Permalink Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* harl.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/09 16:13:40 by adjoly #+# #+# */
/* Updated: 2024/11/09 17:35:57 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
#define uint8_t unsigned char
class Harl {
private:
void debug(void);
void info(void);
void warning(void);
void error(void);
public:
void complain(std::string level);
};