#include <QtCore/qlist.h> #ifndef QLIST_H struct QListData{ /* Some contents are skipped to improve readability */ public: struct Data{ public: struct QBasicAtomic ref; public: int alloc; public: int begin; public: int end; public: unsigned int sharable:1; public: void* array[1]; }; /* ... */ }; #endif // QLIST_H