]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Fix bug #12772
[lyx.git] / src / Thesaurus.h
index e27f2c239adac5e2a3943f7b11bc3cd0e2f94638..9c13b044cb9ecf30980b0bbdb9b3073d0a046eb9 100644 (file)
 #ifndef THESAURUS_H
 #define THESAURUS_H
 
-#include "support/docstring.h"
-#include "WordLangTuple.h"
+#include "support/strfwd.h"
 
 #include <map>
 #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();