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