X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWordLangTuple.h;h=baf93385788f46486f57d2b4e617ee94bd6df407;hb=4ea841fe24ec0f171577b3125425b74afdd0f28a;hp=7fd64f4af6c8dcba0bcd81510ac0ab316a467cc3;hpb=13349032cb4dc8ef44146aa652ff6bbff6698249;p=lyx.git diff --git a/src/WordLangTuple.h b/src/WordLangTuple.h index 7fd64f4af6..baf9338578 100644 --- a/src/WordLangTuple.h +++ b/src/WordLangTuple.h @@ -1,43 +1,56 @@ +// -*- C++ -*- /** * \file WordLangTuple.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author John Levon + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ #ifndef WORD_LANG_TUPLE_H #define WORD_LANG_TUPLE_H -#include "LString.h" +#include "Language.h" + +#include "support/docstring.h" + + +namespace lyx { + /** - * A word and its given language code ("en_US"). - * This is used for spellchecking. + * A word and its given language. + * This is used for spellchecking + * and thesaurus. */ class WordLangTuple { public: - WordLangTuple() {} + WordLangTuple() : lang_(0) {} - WordLangTuple(string const & w, string const & c) - : word_(w), code_(c) + WordLangTuple(docstring const & w, Language const * l) + : word_(w), lang_(l) {} /// return the word - string const & word() const { + docstring const & word() const { return word_; } /// return its language code - string const & lang_code() const { - return code_; + Language const * lang() const { + return lang_; } private: /// the word - string word_; - /// language code of word - string code_; + docstring word_; + /// language of word + Language const * lang_; }; + +} // namespace lyx + #endif // WORD_LANG_TUPLE_H