X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=e63f2935236108b73cddbdb0104e5692aa6e515c;hb=4056f0ddb150d0e5d60bc5941d51e365eed0ac86;hp=083fcef223610221789ab9ac61acedcade316eab;hpb=822c8ce43043d0f1d4d0b3a21039768e3c1d6e7b;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 083fcef223..e63f293523 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -1,23 +1,28 @@ // -*- 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 #define THESAURUS_H - + +#include "support/docstring.h" + #include #include - -#include "LString.h" + #ifdef HAVE_LIBAIKSAURUS -#include "Aiksaurus.h" +#include AIKSAURUS_H_LOCATION #endif - + +namespace lyx { + /** * This class provides an interface to whatever thesauri we might support. */ @@ -29,19 +34,22 @@ public: /// ~Thesaurus(); - typedef std::map > Meanings; - + typedef std::map > Meanings; + /** * look up some text in the thesaurus */ - Meanings lookup(string const & text); + Meanings lookup(docstring const & text); private: #ifdef HAVE_LIBAIKSAURUS Aiksaurus * aik_; #endif }; - + extern Thesaurus thesaurus; - + + +} // namespace lyx + #endif