]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.h
update Basque and Romanian l10n
[lyx.git] / src / pspell.h
index bf3c1f3e99aefcbdd90468589a6b5d003d74b362..0080348797d1762726762a8628615464f37136b5 100644 (file)
@@ -1,18 +1,24 @@
+// -*- C++ -*-
 /**
  * \file pspell.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Kevin Atkinson
- * \author John Levon <levon@movementarian.org>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYX_PSPELL_H
 #define LYX_PSPELL_H
 
+#include "SpellBase.h"
+
 #include <map>
 
-#include "SpellBase.h"
+
+namespace lyx {
 
 class PspellManager;
 class PspellStringEmulation;
@@ -27,7 +33,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();
 
@@ -46,22 +52,22 @@ public:
        /// accept the given word temporarily
        virtual void accept(WordLangTuple const &);
 
-       /// return the next near miss after a MISSED result
-       virtual string const nextMiss();
+       /// return the next near miss after a SUGGESTED_WORDS result
+       virtual std::string const nextMiss();
 
        /// give an error message on messy exit
-       virtual string const error();
+       virtual docstring 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_;
@@ -72,4 +78,7 @@ private:
        PspellCanHaveError * spell_error_object;
 };
 
-#endif // PSPELL_H
+
+} // namespace lyx
+
+#endif // LYX_PSPELL_H