#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > class QHash{ /* Some contents are skipped to improve readability */ private: typename QHash::Node* * findNode(Key const & akey, uint* ahp = 0) const /* ... */ }; #endif // QHASH_H