]> git.lyx.org Git - lyx.git/blobdiff - src/messages.h
* filetools.[Ch]: Make functions that start with a capital
[lyx.git] / src / messages.h
index e5c17d8dd3d9a0148425a07194edc417af2ad9f8..f8ba53dbf0aa015ae08d6e2d7fed1bede9ffe63d 100644 (file)
 #ifndef MESSAGES_H
 #define MESSAGES_H
 
-#include "LString.h"
-
 #include <boost/scoped_ptr.hpp>
+#include <string>
 
 ///
 class Messages {
 public:
-       ///
+       /// messages in the language defined by the environment
        Messages();
-       ///
-       Messages(string const & l);
+       /// messages in the language \p l
+       Messages(std::string const & l);
        ///
        ~Messages();
        ///
-       string const get(string const & msg) const;
+       std::string const get(std::string const & msg) const;
 private:
        class Pimpl;
        boost::scoped_ptr<Pimpl> pimpl_;