one implementation of the exam
This commit is contained in:
16
cpp_module_02/Fwoosh.hpp
Normal file
16
cpp_module_02/Fwoosh.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user