]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
fix a visual cursor edge-case:
[lyx.git] / src / Thesaurus.h
index 12bb6a7820531c201e505e98dbbbf25f769058ae..e63f2935236108b73cddbdb0104e5692aa6e515c 100644 (file)
@@ -1,23 +1,28 @@
 // -*- 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 "support/docstring.h"
+
 #include <vector>
 #include <map>
 
-#include "LString.h"
 #ifdef HAVE_LIBAIKSAURUS
-#include "Aiksaurus.h"
+#include AIKSAURUS_H_LOCATION
 #endif
 
+namespace lyx {
+
 /**
  * This class provides an interface to whatever thesauri we might support.
  */
@@ -29,12 +34,12 @@ public:
        ///
        ~Thesaurus();
 
-       typedef std::map<string, std::vector<string> > Meanings;
+       typedef std::map<docstring, std::vector<docstring> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(string const & text);
+       Meanings lookup(docstring const & text);
 
 private:
 #ifdef HAVE_LIBAIKSAURUS
@@ -44,4 +49,7 @@ private:
 
 extern Thesaurus thesaurus;
 
+
+} // namespace lyx
+
 #endif