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