#include <QtCore/qlinkedlist.h>
#ifndef QLINKEDLIST_H
template < typename T > class QLinkedList{
   /* Some contents are skipped to improve readability */
#ifndef QT_NO_STL
   public: inline class std::list < T, class std::allocator < _CharT > > toStdList() const
#endif
   /* ... */
};
#endif // QLINKEDLIST_H