#include <QtCore/qlinkedlist.h> #ifndef QLINKEDLIST_H template < typename T > class QLinkedListIterator{ /* Some contents are skipped to improve readability */ public: inline bool findPrevious(T const & t); /* ... */ }; #endif // QLINKEDLIST_H