#include <QtCore/qobject.h>
#ifndef QOBJECT_H
#ifndef QT_NO_QOBJECT
class QObjectData{
public: virtual ~QObjectData() = 0;
public: class QObject* q_ptr;
public: class QObject* parent;
public: QObjectList children;
public: unsigned int isWidget:1;
public: unsigned int pendTimer:1;
public: unsigned int blockSig:1;
public: unsigned int wasDeleted:1;
public: unsigned int ownObjectName:1;
public: unsigned int sendChildEvents:1;
public: unsigned int receiveChildEvents:1;
public: unsigned int unused:25;
public: int postedEvents;
#ifdef QT3_SUPPORT
#else
public: int reserved;
#endif
};
#endif
#endif // QOBJECT_H