X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=abe9f16339cfcad30f4d91bac87e4fda5ed83254;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=5f2793274122dab76ba568aa777ddaf40286285f;hpb=6f2c9fd6b2cee45a5467c321ec07fcb503d50fa8;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 5f27932741..abe9f16339 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file Thesaurus.h - * Copyright 2001 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 + * + * Full author contact details are available in file CREDITS. */ #ifndef THESAURUS_H @@ -12,12 +14,14 @@ #include #include +#include -#include "LString.h" #ifdef HAVE_LIBAIKSAURUS #include AIKSAURUS_H_LOCATION #endif +namespace lyx { + /** * This class provides an interface to whatever thesauri we might support. */ @@ -29,12 +33,12 @@ public: /// ~Thesaurus(); - typedef std::map > Meanings; + typedef std::map > Meanings; /** * look up some text in the thesaurus */ - Meanings lookup(string const & text); + Meanings lookup(std::string const & text); private: #ifdef HAVE_LIBAIKSAURUS @@ -44,4 +48,7 @@ private: extern Thesaurus thesaurus; + +} // namespace lyx + #endif