#include <QtCore/qlist.h> #ifndef QLIST_H template < typename T > class QList{ /* Some contents are skipped to improve readability */ public: inline void replace(int i, T const & t); /* ... */ }; #endif // QLIST_H