X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.C;h=af37e4df6629fc8dcbeba25b9a61317b01adf7c5;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=ebfd3bda35a0b761879c557659357c4aeee8ff4e;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/Thesaurus.C b/src/Thesaurus.C index ebfd3bda35..af37e4df66 100644 --- a/src/Thesaurus.C +++ b/src/Thesaurus.C @@ -1,25 +1,33 @@ /** * \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 +#include + + +namespace lyx { + +using std::string; + +#ifdef HAVE_LIBAIKSAURUS using std::sort; + Thesaurus::Thesaurus() -{ - aik_ = new Aiksaurus; -} + : aik_(new Aiksaurus) +{} Thesaurus::~Thesaurus() @@ -87,3 +95,6 @@ Thesaurus::Meanings Thesaurus::lookup(string const &) // Global instance Thesaurus thesaurus; + + +} // namespace lyx