]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlDialog_impl.h
port the graphics dialog to the new scheme and get rid of the ControlInset
[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 public:
27         ///
28         ControlDialogBD(LyXView &, Dialogs &);
29 };
30
31
32 class ControlDialogBI : public ControlDialog<ControlConnectBI> {
33 public:
34         ///
35         ControlDialogBI(LyXView &, Dialogs &);
36 };
37
38
39 #endif // CONTROLDIALOG_IMPL_H