piscine_cpp/cpp03/ex02/FragTrap.hpp
2025-02-10 11:13:57 +01:00

33 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/20 23:13:16 by rparodi #+# #+# */
/* Updated: 2025/02/10 11:10:58 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include <iostream>
#include "ClapTrap.hpp"
class FragTrap: public ClapTrap {
public:
FragTrap();
FragTrap(FragTrap const &copy);
FragTrap(std::string name);
FragTrap& operator=(FragTrap &assign);
~FragTrap();
void highFivesGuys(void);
protected:
private:
};
#endif