2 * \file InsetIterator.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Alfredo Braunstein
9 * Full author contact details are available in file CREDITS.
14 #include "InsetIterator.h"
16 #include "support/lassert.h"
22 InsetIterator::InsetIterator(Inset
& inset
)
23 : DocIterator(&inset
.buffer(), &inset
)
28 InsetIterator
inset_iterator_begin(Inset
& inset
)
30 InsetIterator it
= InsetIterator(inset
);
36 InsetIterator
inset_iterator_end(Inset
& inset
)
38 return InsetIterator(inset
);