#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > class QHash{ /* Some contents are skipped to improve readability */ public: inline T const value(Key const & akey, T& adefaultValue) const /* ... */ }; #endif // QHASH_H