]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.h
include sys/time.h
[lyx.git] / src / frontends / controllers / ControlBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file ControlBibitem.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef CONTROLBIBITEM_H
14 #define CONTROLBIBITEM_H
15
16
17 #include "ControlCommand.h"
18
19 /** A controller for Bibitem dialogs.
20  */
21 class ControlBibitem : public ControlCommand {
22 public:
23         ///
24         ControlBibitem(LyXView &, Dialogs &);
25 private:
26         /// Dispatch the changed parameters to the kernel.
27         virtual void applyParamsToInset();
28         /// not needed.
29         virtual void applyParamsNoInset() {}
30 };
31
32 #endif // CONTROLBIBITEM_H