/* * Copyright (c) 2011 Voicu Vlad * Licensed under the Simplified BSD license. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #define HAVE_HUNSPELL namespace Swift { class SpellChecker; class SpellCheckerFactory { public: SpellCheckerFactory(); SpellChecker* createSpellChecker(); }; }