]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Point fix, earlier forgotten
[lyx.git] / src / Thesaurus.h
index 083fcef223610221789ab9ac61acedcade316eab..c8a9afb521fd885ddcbf1a5aec7e2a33e1b504ac 100644 (file)
@@ -1,23 +1,25 @@
 // -*- 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 <vector>
 #include <map>
+
 #include "LString.h"
 #ifdef HAVE_LIBAIKSAURUS
-#include "Aiksaurus.h"
+#include AIKSAURUS_H_LOCATION
 #endif
+
 /**
  * This class provides an interface to whatever thesauri we might support.
  */
@@ -30,7 +32,7 @@ public:
        ~Thesaurus();
 
        typedef std::map<string, std::vector<string> > Meanings;
+
        /**
         * look up some text in the thesaurus
         */
@@ -41,7 +43,7 @@ private:
        Aiksaurus * aik_;
 #endif
 };
+
 extern Thesaurus thesaurus;
+
 #endif