harl.class.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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 13:16:06 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef HARL_CLASS_H
  13. # define HARL_CLASS_H
  14. #include <iostream>
  15. #include <array>
  16. class Harl {
  17. private:
  18. void debug(void);
  19. void info(void);
  20. void warning(void);
  21. void error(void);
  22. public:
  23. void complain(std::string level);
  24. static std::array<std::string, 4> getLevels(void);
  25. };
  26. #endif