2012-10-30 16:59:47 +01:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-10-30 16:59:47 +01:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-10-30 16:59:47 +01:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file spellchecker.h
|
2012-10-30 16:59:47 +01:00
|
|
|
/// @brief Declaration of factory for spell checkers
|
2009-07-29 07:43:02 +02:00
|
|
|
/// @ingroup main_headers spelling
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2014-03-24 15:54:22 +01:00
|
|
|
#include <memory>
|
2009-07-30 06:24:23 +02:00
|
|
|
|
2012-10-30 16:59:47 +01:00
|
|
|
namespace agi { class SpellChecker; }
|
2009-07-30 06:24:23 +02:00
|
|
|
|
2014-03-24 15:54:22 +01:00
|
|
|
struct SpellCheckerFactory {
|
2013-06-08 06:19:40 +02:00
|
|
|
static std::unique_ptr<agi::SpellChecker> GetSpellChecker();
|
2008-03-07 03:32:29 +01:00
|
|
|
};
|