#include <QtGui/qgraphicsscene.h>
#ifndef QGRAPHICSSCENE_H
#if !defined(QT_NO_GRAPHICSVIEW) || (QT_EDITION & QT_MODULE_GRAPHICSVIEW) != QT_MODULE_GRAPHICSVIEW
class QGraphicsScene: public QObject{
   /* Some contents are skipped to improve readability */
   public: void addItem(struct QGraphicsItem* item);
   /* ... */
};
#endif // QT_NO_GRAPHICSVIEW
#endif