]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCredits.h
e7e73f431d43b9d9ec64ff27e3be290b8b82c117
[lyx.git] / src / frontends / controllers / ControlCredits.h
1 /**
2  * \file ControlCredits.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@ic.ac.uk>
8  */
9
10 #ifndef CONTROLCREDITS_H
11 #define CONTROLCREDITS_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "ControlDialogs.h"
18
19 /** A controller for the Credits dialogs.
20  */
21 class ControlCredits : public ControlDialog<ControlConnectBI> {
22 public:
23         ///
24         ControlCredits(LyXView &, Dialogs &);
25
26         ///
27         std::stringstream & getCredits(std::stringstream &) const;
28
29 private:
30         /// not needed.
31         virtual void apply() {}
32 };
33
34 #endif // CONTROLCREDITS_H
35