]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlDialog_impl.h
The reducing file dependencies in the frontends patch.
[lyx.git] / src / frontends / controllers / ControlDialog_impl.h
1 // -*- C++ -*-
2 /*
3  * \file ControlDialog_impl.h
4  * Copyright 2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Angus Leeming <a.leeming@ic.ac.uk>
8  *
9  * Instatiate the two possible instantiations of the ControlDialog template
10  * class, thus reducing file dependencies enormously.
11  */
12
13 #ifndef CONTROLDIALOG_IMPL_H
14 #define CONTROLDIALOG_IMPL_H
15
16 #include "ControlDialog.h"
17 #include "ControlConnections.h"
18
19 class Dialogs;
20 class LyXView;
21
22
23 class ControlDialogBD : public ControlDialog<ControlConnectBD> 
24 {
25 public:
26         ///
27         ControlDialogBD(LyXView &, Dialogs &);
28 };
29
30
31 class ControlDialogBI : public ControlDialog<ControlConnectBD>
32 {
33 public:
34         ///
35         ControlDialogBI(LyXView &, Dialogs &);
36 };
37
38
39 #endif // CONTROLDIALOG_IMPL_H