]> git.lyx.org Git - lyx.git/blob - src/insets/insetbase.C
Strip out redundant includes (193 of 'em).
[lyx.git] / src / insets / insetbase.C
1 /**
2  * \file insetbase.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insetbase.h"
14
15
16 dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
17 {
18         return UNDISPATCHED;
19 }
20
21
22 dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
23 {
24         idx_type idx = 0;
25         pos_type pos = 0;
26         return dispatch(cmd, idx, pos);
27 }