21 lines
248 B
C++
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
|