]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormCredits.h
use more stringstream, remove some cruft
[lyx.git] / src / frontends / qt2 / FormCredits.h
1 /**
2  * \file FormCredits.h
3  * Copyright 2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven, leuven@fee.uva.nl
7  * \author Angus Leeming, a.leeming@.ac.uk
8  * \author Kalle Dalheimer, kalle@klaralvdalens-datakonsult.se
9  */
10
11 #ifndef FORMCREDITS_H
12 #define FORMCREDITS_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "Qt2Base.h"
19
20 class ControlCredits;
21 class FormCreditsDialogImpl;
22
23 /** This class provides a Qt2 implementation of the FormCredits Dialog.
24  */
25 class FormCredits : public Qt2CB<ControlCredits, Qt2DB<FormCreditsDialogImpl> > {
26 public:
27         ///
28         FormCredits(ControlCredits &);
29
30 private:
31         /// not needed.
32         virtual void apply() {}
33         /// not needed.
34         virtual void update() {}
35         /// Build the dialog
36         virtual void build();
37 };
38
39 #endif
40