]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlDialog_impl.h
Really dull and boring header shit
[lyx.git] / src / frontends / controllers / ControlDialog_impl.h
1 // -*- C++ -*-
2 /**
3  * \file ControlDialog_impl.h
4  * Read the file COPYING
5  *
6  * \author Angus Leeming 
7  *
8  * Full author contact details are available in file CREDITS
9  *
10  * Instatiate the two possible instantiations of the ControlDialog template
11  * class, thus reducing file dependencies enormously.
12  */
13
14 #ifndef CONTROLDIALOG_IMPL_H
15 #define CONTROLDIALOG_IMPL_H
16
17 #include "ControlDialog.h"
18 #include "ControlConnections.h"
19
20 class Dialogs;
21 class LyXView;
22
23
24 class ControlDialogBD : public ControlDialog<ControlConnectBD>
25 {
26 public:
27         ///
28         ControlDialogBD(LyXView &, Dialogs &);
29 };
30
31
32 class ControlDialogBI : public ControlDialog<ControlConnectBI>
33 {
34 public:
35         ///
36         ControlDialogBI(LyXView &, Dialogs &);
37 };
38
39
40 #endif // CONTROLDIALOG_IMPL_H