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