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