X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWordLangTuple.h;h=b1a31bd90d27509345d2168604cd7239f49f1857;hb=6b651f2ad9f698c01993dcc6e340682c279f1c55;hp=e0a1d8eed4c3670afc93e449dfeeb81e236a5ef8;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/WordLangTuple.h b/src/WordLangTuple.h index e0a1d8eed4..b1a31bd90d 100644 --- a/src/WordLangTuple.h +++ b/src/WordLangTuple.h @@ -12,7 +12,11 @@ #ifndef WORD_LANG_TUPLE_H #define WORD_LANG_TUPLE_H -#include "support/std_string.h" +#include "support/docstring.h" + + +namespace lyx { + /** * A word and its given language code ("en_US"). @@ -22,25 +26,28 @@ class WordLangTuple { public: WordLangTuple() {} - WordLangTuple(string const & w, string const & c) + WordLangTuple(docstring const & w, std::string const & c) : word_(w), code_(c) {} /// return the word - string const & word() const { + docstring const & word() const { return word_; } /// return its language code - string const & lang_code() const { + std::string const & lang_code() const { return code_; } private: /// the word - string word_; + docstring word_; /// language code of word - string code_; + std::string code_; }; + +} // namespace lyx + #endif // WORD_LANG_TUPLE_H