#include <QtCore/qlist.h> #ifndef QLIST_H template < typename T > class QList{ /* Some contents are skipped to improve readability */ public: class const_iterator{ /* ... */ #ifdef QT_STRICT_ITERATORS #else public: inline const_iterator(class QList::iterator const & o); #endif /* ... */ }; /* ... */ }; #endif // QLIST_H