#include <QtCore/qhash.h>
template < typename T > struct QHashNode < unsigned int, T >{
   /* This entity specializes QHashNode */
   public: class QHashNode < unsigned int, T >* next;
   public: inline QHashNode(uint);
   public: inline QHashNode(uint, T const & value0);
   public: T value;
   public: inline bool same_key(uint h0, uint);
   public: union /*anonymous*/{
      uint h;
      uint key;
   };
};
#endif // QT_NO_PARTIAL_TEMPLATE_SPECIALIZATION
#endif // QHASH_H