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