]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
include sys/time.h
[lyx.git] / src / Thesaurus.h
index 083fcef223610221789ab9ac61acedcade316eab..12bb6a7820531c201e505e98dbbbf25f769058ae 100644 (file)
@@ -9,15 +9,15 @@
 
 #ifndef THESAURUS_H
 #define THESAURUS_H
+
 #include <vector>
 #include <map>
+
 #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<string, std::vector<string> > Meanings;
+
        /**
         * look up some text in the thesaurus
         */
@@ -41,7 +41,7 @@ private:
        Aiksaurus * aik_;
 #endif
 };
+
 extern Thesaurus thesaurus;
+
 #endif