lyx_mirror/src/insetiterator.h

45 lines
763 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file insetiterator.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSETITERATOR_H
#define INSETITERATOR_H
#include "dociterator.h"
namespace lyx {
class InsetIterator : public DocIterator
{
public:
///
explicit InsetIterator(InsetBase & inset);
///
void operator++() { forwardInset(); }
///
void operator--();
///
InsetBase * operator->() { return nextInset(); }
///
InsetBase & operator*() { return *nextInset(); }
};
InsetIterator inset_iterator_begin(InsetBase & inset);
InsetIterator inset_iterator_end(InsetBase & inset);
} // namespace lyx
#endif