]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Fix bug #12772
[lyx.git] / src / Thesaurus.h
index a479fda96284d542e90e5859f6af0400ae138f7c..9c13b044cb9ecf30980b0bbdb9b3073d0a046eb9 100644 (file)
 #ifndef THESAURUS_H
 #define THESAURUS_H
 
-#include "support/docstring.h"
-#include "WordLangTuple.h"
+#include "support/strfwd.h"
 
 #include <map>
-#include <string>
 #include <vector>
 
 namespace lyx {
 
+class WordLangTuple;
+
 /**
  * This class provides an interface to whatever thesauri we might support.
  */
 
 class Thesaurus
 {
+       /// noncopyable
+       Thesaurus(Thesaurus const &);
+       void operator=(Thesaurus const &);
 public:
        ///
        Thesaurus();