lyx_mirror/src/InsetIterator.cpp

43 lines
667 B
C++
Raw Normal View History

/**
* \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<EFBFBD> P<EFBFBD>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)
{
}
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