mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
23 lines
454 B
C++
23 lines
454 B
C++
|
// -*- C++ -*-
|
||
|
/*
|
||
|
* \file ControlDialog_impl.C
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "ControlDialog_impl.h"
|
||
|
#include "ControlDialog.tmpl"
|
||
|
|
||
|
ControlDialogBD::ControlDialogBD(LyXView & lv, Dialogs & d)
|
||
|
: ControlDialog<ControlConnectBD>(lv, d)
|
||
|
{}
|
||
|
|
||
|
|
||
|
ControlDialogBI::ControlDialogBI(LyXView & lv, Dialogs & d)
|
||
|
: ControlDialog<ControlConnectBD>(lv, d)
|
||
|
{}
|