/* * Copyright (c) 2011 Voicu Vlad * Licensed under the Simplified BSD license. * See Documentation/Licenses/GPLv3.txt for more information. */ #include #include #pragma once class Hunspell; namespace Swift { class SpellChecker { public: SpellChecker(); ~SpellChecker(); bool isCorrect(const std::string& word); void getSuggestions(const std::string& word, std::vector& list); private: Hunspell* speller_; }; }