#include <QtCore/qstring.h>
#ifndef QSTRING_H
class QString{
   /* Some contents are skipped to improve readability */
   private: struct Data{
      public: struct QBasicAtomic ref;
      public: int alloc;
      public: int size;
      public: ushort* data;
      public: unsigned int clean:1;
      public: unsigned int simpletext:1;
      public: unsigned int righttoleft:1;
      public: unsigned int asciiCache:1;
      public: unsigned int reserved:12;
      public: ushort array[1];
   };
   /* ... */
};
#endif // QSTRING_H