]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
bug 1987: Crash when switching to different document class
[lyx.git] / src / Thesaurus.h
index 12bb6a7820531c201e505e98dbbbf25f769058ae..c3ea6904e9434fbe4c077e44ee5288203482f5f5 100644 (file)
@@ -1,10 +1,12 @@
 // -*- 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
 
 #include <vector>
 #include <map>
+#include <string>
 
-#include "LString.h"
 #ifdef HAVE_LIBAIKSAURUS
-#include "Aiksaurus.h"
+#include AIKSAURUS_H_LOCATION
 #endif
 
 /**
@@ -29,12 +31,12 @@ public:
        ///
        ~Thesaurus();
 
-       typedef std::map<string, std::vector<string> > Meanings;
+       typedef std::map<std::string, std::vector<std::string> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(string const & text);
+       Meanings lookup(std::string const & text);
 
 private:
 #ifdef HAVE_LIBAIKSAURUS