summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Voicu <vladvoic@gmail.com>2011-11-29 02:41:07 (GMT)
committervlad <vlad@tyrion.(none)>2012-10-13 13:55:44 (GMT)
commit0a13558efc0ccf0e5afceb63c416d8cb401997ec (patch)
tree0fe17d78ecced7389b7f2a3d121b223bbce8dc26 /SwifTools/HunspellChecker.h
parent5e7be9a49cf540a68275f084e57a6efe8d7c1626 (diff)
downloadswift-contrib-0a13558efc0ccf0e5afceb63c416d8cb401997ec.zip
swift-contrib-0a13558efc0ccf0e5afceb63c416d8cb401997ec.tar.bz2
Added Factory for creeating SpellCheckers
Diffstat (limited to 'SwifTools/HunspellChecker.h')
-rw-r--r--SwifTools/HunspellChecker.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/SwifTools/HunspellChecker.h b/SwifTools/HunspellChecker.h
new file mode 100644
index 0000000..7117ccd
--- /dev/null
+++ b/SwifTools/HunspellChecker.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (c) 2011 Voicu Vlad
+ * Licensed under the Simplified BSD license.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include <vector>
+#include <boost/algorithm/string.hpp>
+#include <SwifTools/SpellChecker.h>
+
+#pragma once
+
+class Hunspell;
+
+namespace Swift {
+ class HunspellChecker : public SpellChecker {
+ public:
+ HunspellChecker(const char* affix_path, const char* dict_path);
+ virtual ~HunspellChecker();
+ virtual bool isCorrect(const std::string& word);
+ virtual void getSuggestions(const std::string& word, std::vector<std::string>& list);
+ private:
+ Hunspell* speller_;
+ };
+}