#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > struct QHashNode{ /* Some contents are skipped to improve readability */ public: inline QHashNode(Key const & key0, T const & value0); /* ... */ }; #endif // QHASH_H