| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* FragTrap.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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 <iostream>
- # include <string>
- #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 */
|