X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=e63f2935236108b73cddbdb0104e5692aa6e515c;hb=2455bc258f3b62c29ec4a41cb88070ff8518e842;hp=2a897f01ba267a4f74007babdb215a1e627b3dbf;hpb=1070702ea46b36ec5016bad2fe97649cec5e6148;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 2a897f01ba..e63f293523 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -1,22 +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 "LString.h" +#include + #ifdef HAVE_LIBAIKSAURUS -#include "AikSaurus.h" +#include AIKSAURUS_H_LOCATION #endif - + +namespace lyx { + /** * This class provides an interface to whatever thesauri we might support. */ @@ -28,41 +34,22 @@ public: /// ~Thesaurus(); - /** - * enum of possible part of speech types - */ - enum POS { - NONE = 0x0, - OTHER = 0x01, - NOUN = 0x02, - VERB = 0x04, - ADJECTIVE = 0x08, - ADVERB = 0x10 - }; - - /** - * an individual entry from the thesaurus - */ - struct ThesaurusEntry { - /// - ThesaurusEntry(const string & ent, char pos); - /// the actual entry - string entry; - /// entry's part of speech - int pos; - }; + typedef std::map > Meanings; /** * look up some text in the thesaurus */ - std::vector lookup(string const & text); + Meanings lookup(docstring const & text); private: #ifdef HAVE_LIBAIKSAURUS - AikSaurus * aik_; + Aiksaurus * aik_; #endif }; - + extern Thesaurus thesaurus; - + + +} // namespace lyx + #endif