X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=abe9f16339cfcad30f4d91bac87e4fda5ed83254;hb=6c300f72a217722652dc27db9108e1050028979c;hp=c8a9afb521fd885ddcbf1a5aec7e2a33e1b504ac;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index c8a9afb521..abe9f16339 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -14,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. */ @@ -31,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 @@ -46,4 +48,7 @@ private: extern Thesaurus thesaurus; + +} // namespace lyx + #endif