lyx_mirror/src/InsetIterator.cpp
André Pönitz 6192345f60 add Buffer * member to DocIterator
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27603 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-17 11:46:07 +00:00

43 lines
687 B
C++

/**
* \file InsetIterator.cpp
* 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 "support/lassert.h"
namespace lyx {
InsetIterator::InsetIterator(Inset & inset)
: DocIterator(&inset.buffer(), &inset)
{
}
InsetIterator inset_iterator_begin(Inset & inset)
{
InsetIterator it = InsetIterator(inset);
it.forwardInset();
return it;
}
InsetIterator inset_iterator_end(Inset & inset)
{
return InsetIterator(inset);
}
} // namespace lyx