/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* FragTrap.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 14:51:41 by bchanot #+# #+# */ /* Updated: 2025/12/18 15:05:41 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FRAGTRAP_HPP # define FRAGTRAP_HPP # include # include #include "ClapTrap.hpp" class FragTrap : virtual public ClapTrap { public: FragTrap(); FragTrap( std::string const & name ); FragTrap( FragTrap const & src ); ~FragTrap(); FragTrap & operator=( FragTrap const & rhs ); void highFiveGuys(void) const; private: }; std::ostream & operator<<( std::ostream & o, FragTrap const & i ); #endif /* ******************************************************** FRAGTRAP_H */