]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERT.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / QERT.h
1 // -*- C++ -*-
2 /**
3  * \file QERT.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 QERT_H
13 #define QERT_H
14
15
16 #include "Qt2Base.h"
17
18 class ControlERT;
19 class QERTDialog;
20
21 class QERT
22         : public Qt2CB<ControlERT, Qt2DB<QERTDialog> >
23 {
24 public:
25         friend class QERTDialog;
26
27         QERT();
28 private:
29         /// Apply changes
30         virtual void apply();
31         /// update
32         virtual void update_contents();
33         /// build the dialog
34         virtual void build_dialog();
35 };
36
37 #endif // QERT_H