#include "Cure.hpp" Cure::Cure() : _type("cure") {} Cure::Cure( Cure const & src ) { *this = src } Cure & Cure::operator=( Cure const & rhs ) { return *this; } virtual void Ice::use(ICharacter & target) { std::cout << "* heals " << target.name << "’s wounds *" }