mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
303a6c126c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8574 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
724 B
C++
39 lines
724 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetiterator.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETITERATOR_H
|
|
#define INSETITERATOR_H
|
|
|
|
#include "dociterator.h"
|
|
|
|
|
|
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);
|
|
|
|
|
|
#endif
|