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

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