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