oblivioncth

mainwindow.h

Apr 19th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5. #include <QtWidgets>
  6.  
  7. namespace Ui {
  8. class MainWindow;
  9. }
  10.  
  11. class MainWindow : public QMainWindow
  12. {
  13.     Q_OBJECT
  14.  
  15. public:
  16.     explicit MainWindow(QWidget *parent = 0);
  17.     ~MainWindow();
  18.  
  19. private:
  20.     Ui::MainWindow *ui;
  21.  
  22.     QGraphicsScene *scene;
  23. };
  24.  
  25. #endif // MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment