]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAbout.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / QAbout.h
1 // -*- C++ -*-
2 /**
3  * \file QAbout.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMABOUT_H
13 #define FORMABOUT_H
14
15
16 #include "Qt2Base.h"
17
18 class QAboutDialog;
19 class ControlAboutlyx;
20
21 class QAbout
22         : public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
23 {
24 public:
25         QAbout();
26 private:
27         /// not needed
28         virtual void apply() {}
29         /// not needed
30         virtual void update_contents() {}
31         // build the dialog
32         virtual void build_dialog();
33 };
34
35 #endif // FORMABOUT_H