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