mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
13 lines
185 B
C++
13 lines
185 B
C++
|
|
||
|
#include "insetiterator.h"
|
||
|
|
||
|
#include <boost/assert.hpp>
|
||
|
|
||
|
|
||
|
InsetIterator::InsetIterator(InsetBase & inset)
|
||
|
: DocumentIterator(inset)
|
||
|
{
|
||
|
if (size() && !nextInset())
|
||
|
forwardInset();
|
||
|
}
|