X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWordLangTuple.h;h=baf93385788f46486f57d2b4e617ee94bd6df407;hb=a1da60642c0541b6ebac85dd8b64de8ff993c256;hp=86775431d38bee38dc6fadb53444f17718f0d2bb;hpb=a5ead24854dfbd2200ef748e0404cf8b6ab68d29;p=lyx.git diff --git a/src/WordLangTuple.h b/src/WordLangTuple.h index 86775431d3..baf9338578 100644 --- a/src/WordLangTuple.h +++ b/src/WordLangTuple.h @@ -12,36 +12,45 @@ #ifndef WORD_LANG_TUPLE_H #define WORD_LANG_TUPLE_H -#include +#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(std::string const & w, std::string const & c) - : word_(w), code_(c) + WordLangTuple(docstring const & w, Language const * l) + : word_(w), lang_(l) {} /// return the word - std::string const & word() const { + docstring const & word() const { return word_; } /// return its language code - std::string const & lang_code() const { - return code_; + Language const * lang() const { + return lang_; } private: /// the word - std::string word_; - /// language code of word - std::string code_; + docstring word_; + /// language of word + Language const * lang_; }; + +} // namespace lyx + #endif // WORD_LANG_TUPLE_H