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