mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
6192345f60
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27603 a592a061-630c-0410-9148-cb99ea01b6c8
43 lines
687 B
C++
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
|