#include <QtCore/qhash.h> #ifndef QHASH_H template < typename Key, typename T > class QMultiHash: public QHash < Key, T >{ /* Some contents are skipped to improve readability */ private: T const operator [](Key const & key) const /* ... */ }; #endif // QHASH_H