#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > struct QHashDummyNode{ public: struct QHashDummyNode* next; public: uint h; public: Key key; public: inline QHashDummyNode(Key const & key0); }; #endif // QHASH_H