diff options
Diffstat (limited to 'SwifTools')
-rw-r--r-- | SwifTools/SpellCheckerFactory.h | 9 | ||||
-rw-r--r-- | SwifTools/UnitTest/SpellParserTest.cpp | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/SwifTools/SpellCheckerFactory.h b/SwifTools/SpellCheckerFactory.h index a0de98c..2e1711a 100644 --- a/SwifTools/SpellCheckerFactory.h +++ b/SwifTools/SpellCheckerFactory.h @@ -4,8 +4,16 @@ * See Documentation/Licenses/BSD-simplified.txt for more information. */ +/* + * Copyright (c) 2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + #pragma once +#include <string> + #include <Swiften/Base/Platform.h> #ifdef HAVE_HUNSPELL @@ -16,6 +24,7 @@ namespace Swift { class SpellChecker; + class SpellCheckerFactory { public: SpellCheckerFactory(); diff --git a/SwifTools/UnitTest/SpellParserTest.cpp b/SwifTools/UnitTest/SpellParserTest.cpp index da233e5..3148ae6 100644 --- a/SwifTools/UnitTest/SpellParserTest.cpp +++ b/SwifTools/UnitTest/SpellParserTest.cpp @@ -27,7 +27,7 @@ class SpellParserTest : public CppUnit::TestFixture { public: SpellParserTest() { parser_ = new SpellParser(); - }; + } void tearDown() { position_.clear(); } |