lyx_mirror/src/WordLangTuple.h
Vincent van Ravesteijn 98f07840fc Fix bug #6561: Crash when using Spellchecker's language box when cursor is in math.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36242 a592a061-630c-0410-9148-cb99ea01b6c8
2010-11-10 20:06:21 +00:00

57 lines
899 B
C++

// -*- C++ -*-
/**
* \file WordLangTuple.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#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.
* This is used for spellchecking
* and thesaurus.
*/
class WordLangTuple {
public:
WordLangTuple() : lang_(0) {}
WordLangTuple(docstring const & w, Language * l)
: word_(w), lang_(l)
{}
/// return the word
docstring const & word() const {
return word_;
}
/// return its language code
Language const * lang() const {
return lang_;
}
private:
/// the word
docstring word_;
/// language of word
Language * lang_;
};
} // namespace lyx
#endif // WORD_LANG_TUPLE_H