mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
43 lines
657 B
C++
43 lines
657 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 begin(Inset & inset)
|
|
{
|
|
InsetIterator it = InsetIterator(inset);
|
|
it.forwardInset();
|
|
return it;
|
|
}
|
|
|
|
|
|
InsetIterator end(Inset & inset)
|
|
{
|
|
return InsetIterator(inset);
|
|
}
|
|
|
|
|
|
} // namespace lyx
|