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