]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / pspell.h
index deb096c95ac6de26fbe541c12eb1e1a9459ef7e0..2b676d8d438e1a0a983a2eafebfa131235a3c3b0 100644 (file)
 #ifndef LYX_PSPELL_H
 #define LYX_PSPELL_H
 
-#include <map>
-
 #include "SpellBase.h"
 
+#include <map>
+
 class PspellManager;
 class PspellStringEmulation;
 class PspellCanHaveError;
@@ -30,7 +30,7 @@ public:
        /**
         * Initialise the spellchecker with the given buffer params and language.
         */
-       PSpell(BufferParams const & params, string const & lang);
+       PSpell(BufferParams const & params, std::string const & lang);
 
        virtual ~PSpell();
 
@@ -50,21 +50,21 @@ public:
        virtual void accept(WordLangTuple const &);
 
        /// return the next near miss after a MISSED result
-       virtual string const nextMiss();
+       virtual std::string const nextMiss();
 
        /// give an error message on messy exit
-       virtual string const error();
+       virtual std::string const error();
 
 private:
        /// add a manager of the given language
-       void addManager(string const & lang);
+       void addManager(std::string const & lang);
 
        struct Manager {
                PspellManager * manager;
                PspellConfig * config;
        };
 
-       typedef std::map<string, struct Manager> Managers;
+       typedef std::map<std::string, struct Manager> Managers;
 
        /// the managers
        Managers managers_;