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

17 lines
241 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