FragTrap.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* FragTrap.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/12/18 14:51:41 by bchanot #+# #+# */
  9. /* Updated: 2025/12/18 15:05:41 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef FRAGTRAP_HPP
  13. # define FRAGTRAP_HPP
  14. # include <iostream>
  15. # include <string>
  16. #include "ClapTrap.hpp"
  17. class FragTrap : virtual public ClapTrap
  18. {
  19. public:
  20. FragTrap();
  21. FragTrap( std::string const & name );
  22. FragTrap( FragTrap const & src );
  23. ~FragTrap();
  24. FragTrap & operator=( FragTrap const & rhs );
  25. void highFiveGuys(void) const;
  26. private:
  27. };
  28. std::ostream & operator<<( std::ostream & o, FragTrap const & i );
  29. #endif /* ******************************************************** FRAGTRAP_H */