X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=12bb6a7820531c201e505e98dbbbf25f769058ae;hb=dad1fc66e44a4dad94eb1e9ffd5736bf8f59ae6d;hp=083fcef223610221789ab9ac61acedcade316eab;hpb=822c8ce43043d0f1d4d0b3a21039768e3c1d6e7b;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 083fcef223..12bb6a7820 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -9,15 +9,15 @@ #ifndef THESAURUS_H #define THESAURUS_H - + #include #include - + #include "LString.h" #ifdef HAVE_LIBAIKSAURUS #include "Aiksaurus.h" #endif - + /** * This class provides an interface to whatever thesauri we might support. */ @@ -30,7 +30,7 @@ public: ~Thesaurus(); typedef std::map > Meanings; - + /** * look up some text in the thesaurus */ @@ -41,7 +41,7 @@ private: Aiksaurus * aik_; #endif }; - + extern Thesaurus thesaurus; - + #endif