#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > class QHashIterator{ /* Some contents are skipped to improve readability */ public: inline typename QHash < Key, T >::const_iterator previous(); /* ... */ }; #endif // QHASH_H