]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLog.h
Strip trailing whitespace.
[lyx.git] / src / frontends / qt2 / QLog.h
1 // -*- C++ -*-
2 /**
3  * \file QLog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QLOG_H
13 #define QLOG_H
14
15
16 #include "Qt2Base.h"
17
18 class ControlLog;
19 class QLogDialog;
20
21 ///
22 class QLog
23         : public Qt2CB<ControlLog, Qt2DB<QLogDialog> >
24 {
25 public:
26         ///
27         friend class QLogDialog;
28         ///
29         QLog();
30 private:
31         /// Apply changes
32         virtual void apply() {}
33         /// update
34         virtual void update_contents();
35         /// build the dialog
36         virtual void build_dialog();
37 };
38
39 #endif // QLOG_H