#include <QtCore/qlist.h>
#ifndef QLIST_H
template < typename T > class QList{
   /* 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 // QLIST_H