X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.C;h=6013a96007da3692fb2e7e709791d31efc712b77;hb=24f8676130d1e0769db394b7142dae7eeb1d955e;hp=e41ecf5fb04b98733b3872c262c03b211b15dded;hpb=822c8ce43043d0f1d4d0b3a21039768e3c1d6e7b;p=lyx.git diff --git a/src/Thesaurus.C b/src/Thesaurus.C index e41ecf5fb0..6013a96007 100644 --- a/src/Thesaurus.C +++ b/src/Thesaurus.C @@ -1,21 +1,23 @@ /** * \file Thesaurus.C - * 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. */ #include #include "Thesaurus.h" +#ifdef HAVE_LIBAIKSAURUS + #include - -Thesaurus thesaurus; -#ifdef HAVE_LIBAIKSAURUS - +using std::sort; + Thesaurus::Thesaurus() { aik_ = new Aiksaurus; @@ -36,14 +38,14 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text) return meanings; // weird api, but ... - + int prev_meaning = -1; int cur_meaning; string meaning; - // correct, returns "" at the end + // correct, returns "" at the end string ret = aik_->next(cur_meaning); - + while (!ret.empty()) { if (cur_meaning != prev_meaning) { meaning = ret; @@ -52,17 +54,17 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text) } else { if (ret != text) { meanings[meaning].push_back(ret); - } + } } - + ret = aik_->next(cur_meaning); } for (Meanings::iterator it = meanings.begin(); it != meanings.end(); ++it) { - std::sort(it->second.begin(), it->second.end()); + sort(it->second.begin(), it->second.end()); } - + return meanings; } @@ -71,16 +73,19 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text) Thesaurus::Thesaurus() { } - - + + Thesaurus::~Thesaurus() { } - + Thesaurus::Meanings Thesaurus::lookup(string const &) { return Meanings(); } #endif // HAVE_LIBAIKSAURUS + +// Global instance +Thesaurus thesaurus;