#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 */
   protected: virtual void drawItems(struct QPainter* painter, int numItems, struct QGraphicsItem* * items, struct QStyleOptionGraphicsItem const * options, struct QWidget* widget = 0);
   /* ... */
};
#endif // QT_NO_GRAPHICSVIEW
#endif