X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FWordLangTuple.h;h=b1a31bd90d27509345d2168604cd7239f49f1857;hb=559c2f648239fff4fec769b34b30ccff23491e31;hp=90fd01918f3ad72d65aa69c8dc1a25c5b24d67ad;hpb=c10dfd15cd79499dd23f161d8f1716c00a143e09;p=lyx.git diff --git a/src/WordLangTuple.h b/src/WordLangTuple.h index 90fd01918f..b1a31bd90d 100644 --- a/src/WordLangTuple.h +++ b/src/WordLangTuple.h @@ -1,16 +1,23 @@ +// -*- 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 "support/docstring.h" + + +namespace lyx { + + /** * A word and its given language code ("en_US"). * This is used for spellchecking. @@ -18,26 +25,29 @@ 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