2003-08-19 10:04:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetbase.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-19 10:04:35 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2003-02-18 11:47:16 +00:00
|
|
|
|
#include "insetbase.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
|
|
|
|
|
{
|
|
|
|
|
return UNDISPATCHED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
|
|
|
|
|
{
|
|
|
|
|
idx_type idx = 0;
|
|
|
|
|
pos_type pos = 0;
|
|
|
|
|
return dispatch(cmd, idx, pos);
|
|
|
|
|
}
|