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