]> git.lyx.org Git - lyx.git/blob - src/insets/insetbase.C
572ab221bd2df8754e5fbdc72dd6eab978cc9d36
[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
17 InsetBase::dispatch(FuncRequest const & f, idx_type & i, pos_type & p)
18 {
19         return priv_dispatch(f, i, p);
20 }
21
22 dispatch_result
23 InsetBase::dispatch(FuncRequest const & f)
24 {
25         idx_type i = 0;
26         pos_type p = 0;
27         return priv_dispatch(f, i, p);
28 }
29
30
31 dispatch_result
32 InsetBase::priv_dispatch(FuncRequest const &, idx_type &, pos_type &)
33 {
34         return UNDISPATCHED;
35 }