]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCredits.h
change a lot of methods to begin with small char
[lyx.git] / src / frontends / controllers / ControlCredits.h
1 // -*- C++ -*-
2 /**
3  * \file ControlCredits.h
4  * Copyright 2001 The LyX Team.
5  * See the file COPYING.
6  *
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  * \author Angus Leeming <a.leeming@ic.ac.uk>
9  */
10
11 #ifndef CONTROLCREDITS_H
12 #define CONTROLCREDITS_H
13
14 #include "Lsstream.h"
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ControlDialogs.h"
21
22 /** A controller for the Credits dialogs.
23  */
24 class ControlCredits : public ControlDialog<ControlConnectBI> {
25 public:
26         ///
27         ControlCredits(LyXView &, Dialogs &);
28
29         ///
30         std::stringstream & getCredits(std::stringstream &) const;
31
32 private:
33         /// not needed.
34         virtual void apply() {}
35 };
36
37 #endif // CONTROLCREDITS_H
38