summaryrefslogtreecommitdiffstats
blob: d58a9ec8b76e0e4b376682aa9bee6dcc140665d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2011 Vlad Voicu
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

namespace Swift {
	class SpellChecker;
	class SpellCheckerFactory {
		public:
			SpellCheckerFactory();
			SpellChecker* createSpellChecker(const char* affixPath, const char* dictPath);
	};
}