| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ScavTrap.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/12/18 14:28:06 by bchanot #+# #+# */
- /* Updated: 2025/12/18 14:48:19 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef SCAVTRAP_HPP
- # define SCAVTRAP_HPP
- # include <iostream>
- # include <string>
- #include "ClapTrap.hpp"
- class ScavTrap : public ClapTrap
- {
- public:
- ScavTrap();
- ScavTrap( std::string const & name );
- ScavTrap( ScavTrap const & src );
- ~ScavTrap();
- ScavTrap & operator=( ScavTrap const & rhs );
- void guardGate(void) const;
- private:
- };
- std::ostream & operator<<( std::ostream & o, ScavTrap const & i );
- #endif /* ******************************************************** SCAVTRAP_H */
|