]> git.lyx.org Git - lyx.git/blob - src/frontends/qt3/QAbout.h
put back the :: global namespace identifiers.
[lyx.git] / src / frontends / qt3 / 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 #include "QDialogView.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QAboutDialog;
21 class ControlAboutlyx;
22
23 class QAbout
24         : public QController<ControlAboutlyx, QView<QAboutDialog> >
25 {
26 public:
27         QAbout(Dialog &);
28 private:
29         /// not needed
30         virtual void apply() {}
31         /// not needed
32         virtual void update_contents() {}
33         // build the dialog
34         virtual void build_dialog();
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // FORMABOUT_H