lyx_mirror/src/insetiterator.C
Angus Leeming 72dd20be15 Added/corrected header blurb.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8563 a592a061-630c-0410-9148-cb99ea01b6c8
2004-03-30 12:14:01 +00:00

37 lines
644 B
C

/**
* \file insetiterator.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Alfredo Braunstein
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "insetiterator.h"
#include <boost/assert.hpp>
InsetIterator::InsetIterator(InsetBase & inset)
: DocumentIterator(inset)
{
}
InsetIterator inset_iterator_begin(InsetBase & inset)
{
InsetIterator it = InsetIterator(inset);
it.forwardInset();
return it;
}
InsetIterator inset_iterator_end(InsetBase & inset)
{
return InsetIterator(inset);
}