]> git.lyx.org Git - lyx.git/blob - src/messages.h
7522abc5cfea429acbfc0a97f989b2fac653f648
[lyx.git] / src / 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 "LString.h"
15
16 #include <boost/scoped_ptr.hpp>
17
18 ///
19 class Messages {
20 public:
21         ///
22         Messages(string const & l, string const & dir);
23         ///
24         ~Messages();
25         ///
26         string const get(string const & msg) const;
27 private:
28         class Pimpl;
29         boost::scoped_ptr<Pimpl> pimpl_;
30 };
31
32 #endif