]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
file format change: support for Armenian
[lyx.git] / src / Thesaurus.h
index abe9f16339cfcad30f4d91bac87e4fda5ed83254..e63f2935236108b73cddbdb0104e5692aa6e515c 100644 (file)
 #ifndef THESAURUS_H
 #define THESAURUS_H
 
+#include "support/docstring.h"
+
 #include <vector>
 #include <map>
-#include <string>
 
 #ifdef HAVE_LIBAIKSAURUS
 #include AIKSAURUS_H_LOCATION
@@ -33,12 +34,12 @@ public:
        ///
        ~Thesaurus();
 
-       typedef std::map<std::string, std::vector<std::string> > Meanings;
+       typedef std::map<docstring, std::vector<docstring> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(std::string const & text);
+       Meanings lookup(docstring const & text);
 
 private:
 #ifdef HAVE_LIBAIKSAURUS