#include <QtCore/qlist.h> #ifndef QLIST_H template < typename T > class QMutableListIterator{ /* Some contents are skipped to improve readability */ private: typedef typename QList < T >::const_iterator const_iterator; /* ... */ }; #endif // QLIST_H