#include <QtGui/qgraphicsview.h>
#ifndef QGRAPHICSVIEW_H
#if !defined(QT_NO_GRAPHICSVIEW) || (QT_EDITION & QT_MODULE_GRAPHICSVIEW) != QT_MODULE_GRAPHICSVIEW
class QGraphicsView: public QAbstractScrollArea{
   /* Some contents are skipped to improve readability */
   public: void render(class QPainter* painter, class QRectF const & target = QRectF::QRectF(), class QRect const & source = QRect::QRect(), enum Qt::AspectRatioMode aspectRatioMode = Qt::KeepAspectRatio);
   /* ... */
};
#endif // QT_NO_GRAPHICSVIEW
#endif