]> git.lyx.org Git - lyx.git/blob - src/client/messages.h
* Painter.h:
[lyx.git] / src / client / messages.h
1 // -*- C++ -*-
2 /* \file messages.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #ifndef MESSAGES_H
12 #define MESSAGES_H
13
14 #include <boost/scoped_ptr.hpp>
15 #include <string>
16
17
18 namespace lyx {
19
20 ///
21 class Messages {
22 public:
23         ///
24         Messages();
25         ///
26         Messages(std::string const & l);
27         ///
28         ~Messages();
29         ///
30         std::string const get(std::string const & msg) const;
31 private:
32         class Pimpl;
33         boost::scoped_ptr<Pimpl> pimpl_;
34 };
35
36
37 } // namespace lyx
38
39 #endif