Files
42_SIDE_exam_05_cpp/cpp_module_01/Fwoosh.hpp
2022-12-09 13:39:46 +01:00

21 lines
248 B
C++

#ifndef FWOOSH_HPP
#define FWOOSH_HPP
# include "ASpell.hpp"
class Fwoosh: public ASpell {
public:
Fwoosh(): ASpell("Fwoosh", "fwooshed")
{};
~Fwoosh()
{};
virtual ASpell * clone() const
{
return (new Fwoosh());
};
};
#endif