]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCredits.h
Controller-view split of Graphics and Index popups.
[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 #include "Lsstream.h"
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ControlDialogs.h"
20
21 /** A controller for the Credits dialogs.
22  */
23 class ControlCredits : public ControlDialog<ControlConnectBI> {
24 public:
25         ///
26         ControlCredits(LyXView &, Dialogs &);
27
28         ///
29         std::stringstream & getCredits(std::stringstream &) const;
30
31 private:
32         /// not needed.
33         virtual void apply() {}
34 };
35
36 #endif // CONTROLCREDITS_H
37