]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / Thesaurus.h
index 5ade7daf8d70337045483fd0bac895e6f198aa3d..e63f2935236108b73cddbdb0104e5692aa6e515c 100644 (file)
@@ -1,24 +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 <config.h>
-#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.
  */
@@ -30,41 +34,22 @@ public:
        ///
        ~Thesaurus();
 
-       /**
-        * enum of possible part of speech types
-        */
-       enum POS {
-               NONE = 0x0,
-               OTHER = 0x01,
-               NOUN = 0x02,
-               VERB = 0x04,
-               ADJECTIVE = 0x08,
-               ADVERB = 0x10
-       };
-
-       /**
-        * an individual entry from the thesaurus 
-        */
-       struct ThesaurusEntry {
-               /// 
-               ThesaurusEntry(const string & ent, char pos); 
-               /// the actual entry 
-               string entry;
-               /// entry's part of speech
-               int pos;
-       };
+       typedef std::map<docstring, std::vector<docstring> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       std::vector<ThesaurusEntry> lookup(string const & text);
+       Meanings lookup(docstring const & text);
 
 private:
 #ifdef HAVE_LIBAIKSAURUS
-       AikSaurus * aik_;
+       Aiksaurus * aik_;
 #endif
 };
+
 extern Thesaurus thesaurus;
+
+
+} // namespace lyx
+
 #endif