X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmessages.h;h=39c7246ecddf5f2fc3f527644ce0ca94447742d5;hb=ca6838b288daf07eec7d7a381d74c639c0de3a46;hp=1c04d9c73588d05c221eb8c82c7214730013a41f;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/messages.h b/src/messages.h index 1c04d9c735..39c7246ecd 100644 --- a/src/messages.h +++ b/src/messages.h @@ -11,24 +11,31 @@ #ifndef MESSAGES_H #define MESSAGES_H -#include "support/std_string.h" +#include "support/docstring.h" #include +#include + + +namespace lyx { /// 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; + docstring const get(std::string const & msg) const; private: class Pimpl; boost::scoped_ptr pimpl_; }; + +} // namespace lyx + #endif