You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainwindow.h 283B

12345678910111213141516171819202122
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class MainWindow;
  6. }
  7. class MainWindow : public QWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit MainWindow(QWidget *parent = 0);
  12. ~MainWindow();
  13. private:
  14. Ui::MainWindow *ui;
  15. };
  16. #endif // MAINWINDOW_H