resolved one error and one segfault in xpp02
This commit is contained in:
@@ -1,16 +1,21 @@
|
||||
#ifndef FWOOSH_HPP
|
||||
#define FWOOSH_HPP
|
||||
|
||||
# include "ASpell.hpp"
|
||||
#include "ASpell.hpp"
|
||||
|
||||
class Fwoosh: public ASpell {
|
||||
class Fwoosh: public ASpell
|
||||
{
|
||||
public:
|
||||
Fwoosh(): ASpell("Fwoosh", "fwooshed") {};
|
||||
~Fwoosh() {};
|
||||
Fwoosh(): ASpell("Fwoosh", "fwooshed")
|
||||
{}
|
||||
~Fwoosh()
|
||||
{}
|
||||
|
||||
virtual ASpell * clone() const {
|
||||
virtual ASpell * clone() const
|
||||
{
|
||||
return (new Fwoosh());
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user