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