harl.class.hpp 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* harl.class.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/07/15 19:42:56 by bchanot #+# #+# */
  9. /* Updated: 2025/07/16 12:10:19 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef HARL_CLASS_H
  13. # define HARL_CLASS_H
  14. #include <iostream>
  15. class Harl {
  16. private:
  17. void debug(void);
  18. void info(void);
  19. void warning(void);
  20. void error(void);
  21. public:
  22. void complain(std::string level);
  23. };
  24. #endif