]> git.lyx.org Git - lyx.git/blob - src/insets/insetbase.C
More 'standard conformant blurb' nonsense.
[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 #include "insetbase.h"
13
14
15 dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
16 {
17         return UNDISPATCHED;
18 }
19
20
21 dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
22 {
23         idx_type idx = 0;
24         pos_type pos = 0;
25         return dispatch(cmd, idx, pos);
26 }