X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWordLangTuple.h;h=51a72bf310620881dcd5fceef6e698af291c334b;hb=190439eccfb04b3a27b4e85b548245d3b1f4076a;hp=69d2f742f372224c4a0f23313d08278fd78a2273;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/WordLangTuple.h b/src/WordLangTuple.h index 69d2f742f3..51a72bf310 100644 --- a/src/WordLangTuple.h +++ b/src/WordLangTuple.h @@ -12,33 +12,45 @@ #ifndef WORD_LANG_TUPLE_H #define WORD_LANG_TUPLE_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(std::string const & w, std::string const & c) - : word_(w), code_(c) + WordLangTuple(docstring const & w, Language * 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 * lang_; }; + +} // namespace lyx + #endif // WORD_LANG_TUPLE_H