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