#pragma once #include #include #include #include class GLWidget; class Window : public QWidget { Q_OBJECT public: Window(); ~Window(); void setTestImage(QString const &filePath); private: QGraphicsView *view; QGraphicsScene *scene; GLWidget *myGLWidget; };