| 1234567891011121314151617181920212223242526272829303132 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* harl.class.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/15 19:42:56 by bchanot #+# #+# */
- /* Updated: 2025/07/16 13:16:06 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef HARL_CLASS_H
- # define HARL_CLASS_H
- #include <iostream>
- #include <array>
- class Harl {
- private:
- void debug(void);
- void info(void);
- void warning(void);
- void error(void);
- public:
- void complain(std::string level);
- static std::array<std::string, 4> getLevels(void);
- };
- #endif
|