]> git.lyx.org Git - lyx.git/blobdiff - src/insetiterator.C
* lib/languages:
[lyx.git] / src / insetiterator.C
index 919fcb693f64ce743e58c2464311ee2f4df11b4a..5f862fb3e2296e5b86444c7dfa07303de35ad4a6 100644 (file)
@@ -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 <config.h>
 
 #include "insetiterator.h"
 
 #include <boost/assert.hpp>
 
 
+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