]> git.lyx.org Git - lyx.git/blobdiff - src/WordList.h
Natbib authoryear uses (Ref1; Ref2) by default.
[lyx.git] / src / WordList.h
index 263c4d40da60b99e7cf9f2d0ed1b1b5778b06617..b7f88fb78f305767c278ec1fe19e1493b87de80b 100644 (file)
@@ -14,6 +14,8 @@
 
 #include "support/docstring.h"
 
+#include "Language.h"
+
 namespace lyx {
 
 class WordList {
@@ -29,12 +31,18 @@ public:
        size_t size() const;
        ///
        void insert(docstring const & w);
+       ///
+       void remove(docstring const & w);
+       ///
+       static void cleanupWordLists();
 
 private:
        struct Impl;
        Impl * d;
 };
 
+WordList * theWordList(Language const & lang);
+
 } // namespace lyx
 
 #endif // WORDLIST_H