blob: 086ea6686352280eb1ad8d72da933015fa2a4b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright (c) 2011 Vlad Voicu
* Licensed under the Simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#ifdef HAVE_HUNSPELL
#define HAVE_SPELLCHECKER
#endif
namespace Swift {
class SpellChecker;
class SpellCheckerFactory {
public:
SpellCheckerFactory();
SpellChecker* createSpellChecker(const std::string& dictFile);
};
}
|