mastring the simple heritage

This commit is contained in:
Raphael 2025-01-24 21:02:57 +01:00
parent 245ac4c3a9
commit d161579a2a
13 changed files with 376 additions and 4 deletions

29
cpp03/ex02/FragTrap.hpp Normal file
View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/20 23:13:16 by rparodi #+# #+# */
/* Updated: 2025/01/24 20:54:17 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include <iostream>
#include "ClapTrap.hpp"
class FragTrap: public ClapTrap {
public:
FragTrap(std::string name);
void highFivesGuys(void);
protected:
private:
};
#endif