lyx_mirror/src/insets/insetbase.C
Angus Leeming c5c7a9e568 Strip out redundant includes (193 of 'em).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7670 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-05 09:01:27 +00:00

28 lines
524 B
C

/**
* \file insetbase.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#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);
}