Files
42_SIDE_exam_05_cpp/cpp_module_02/Polymorph.hpp
2022-12-12 22:34:11 +01:00

22 lines
278 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