#include <QtCore/qhash.h>
#ifndef QHASH_H
struct QHashData{
   /* Some contents are skipped to improve readability */
   public: struct Node{
      /* ... */
      public: struct QHashData::Node* next;
      /* ... */
   };
   /* ... */
};
#endif // QHASH_H