Files
42_SIDE_exam_05_cpp/cpp_module_02/Polymorph.hpp
2022-12-01 15:47:19 +01:00

17 lines
275 B
C++

#ifndef POLYMORPH_HPP
#define POLYMORPH_HPP
# include "ASpell.hpp"
class Polymorph: public ASpell {
public:
Polymorph(): ASpell("Polymorph", "turned into a critter") {};
~Polymorph() {};
virtual ASpell * clone() const {
return (new Polymorph());
};
};
#endif