mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
6fac1dc980
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5210 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
733 B
C++
41 lines
733 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlDialog_impl.h
|
|
* Read the file COPYING
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*
|
|
* Instatiate the two possible instantiations of the ControlDialog template
|
|
* class, thus reducing file dependencies enormously.
|
|
*/
|
|
|
|
#ifndef CONTROLDIALOG_IMPL_H
|
|
#define CONTROLDIALOG_IMPL_H
|
|
|
|
#include "ControlDialog.h"
|
|
#include "ControlConnections.h"
|
|
|
|
class Dialogs;
|
|
class LyXView;
|
|
|
|
|
|
class ControlDialogBD : public ControlDialog<ControlConnectBD>
|
|
{
|
|
public:
|
|
///
|
|
ControlDialogBD(LyXView &, Dialogs &);
|
|
};
|
|
|
|
|
|
class ControlDialogBI : public ControlDialog<ControlConnectBI>
|
|
{
|
|
public:
|
|
///
|
|
ControlDialogBI(LyXView &, Dialogs &);
|
|
};
|
|
|
|
|
|
#endif // CONTROLDIALOG_IMPL_H
|