]> git.lyx.org Git - lyx.git/blobdiff - src/messages.h
hopefully fix tex2lyx linking.
[lyx.git] / src / messages.h
index f8ba53dbf0aa015ae08d6e2d7fed1bede9ffe63d..39c7246ecddf5f2fc3f527644ce0ca94447742d5 100644 (file)
 #ifndef MESSAGES_H
 #define MESSAGES_H
 
+#include "support/docstring.h"
+
 #include <boost/scoped_ptr.hpp>
 #include <string>
 
+
+namespace lyx {
+
 ///
 class Messages {
 public:
@@ -24,10 +29,13 @@ public:
        ///
        ~Messages();
        ///
-       std::string const get(std::string const & msg) const;
+       docstring const get(std::string const & msg) const;
 private:
        class Pimpl;
        boost::scoped_ptr<Pimpl> pimpl_;
 };
 
+
+} // namespace lyx
+
 #endif