]> git.lyx.org Git - lyx.git/blobdiff - src/WordList.h
Integrate texrow with otexstream in order to perform automatic line
[lyx.git] / src / WordList.h
index 263c4d40da60b99e7cf9f2d0ed1b1b5778b06617..7bef7f34aa3b72b47562e3b8097b8ed91a2b59af 100644 (file)
@@ -14,6 +14,8 @@
 
 #include "support/docstring.h"
 
+#include "Language.h"
+
 namespace lyx {
 
 class WordList {
@@ -29,12 +31,16 @@ public:
        size_t size() const;
        ///
        void insert(docstring const & w);
-
+       ///
+       void remove(docstring const & w);
+       
 private:
        struct Impl;
        Impl * d;
 };
 
+WordList * theWordList(Language const & lang);
+
 } // namespace lyx
 
 #endif // WORDLIST_H