X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsetiterator.C;h=5f862fb3e2296e5b86444c7dfa07303de35ad4a6;hb=9667cb383640866f47aea57f059a9d2a5caefc3d;hp=919fcb693f64ce743e58c2464311ee2f4df11b4a;hpb=610e905ed330d44a1756a4559694220455a49fa4;p=lyx.git diff --git a/src/insetiterator.C b/src/insetiterator.C index 919fcb693f..5f862fb3e2 100644 --- a/src/insetiterator.C +++ b/src/insetiterator.C @@ -1,11 +1,26 @@ +/** + * \file insetiterator.C + * 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 #include "insetiterator.h" #include +namespace lyx { + + InsetIterator::InsetIterator(InsetBase & inset) - : DocumentIterator(inset) + : DocIterator(inset) { } @@ -22,3 +37,6 @@ InsetIterator inset_iterator_end(InsetBase & inset) { return InsetIterator(inset); } + + +} // namespace lyx