mainwindow.h 367 B

12345678910111213141516171819202122232425262728
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QDebug>
  5. #include <QObject>
  6. namespace Ui {
  7. class MainWindow;
  8. }
  9. class MainWindow : public QMainWindow
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit MainWindow(QWidget *parent = 0);
  14. ~MainWindow();
  15. public slots:
  16. void processSlot();
  17. private:
  18. Ui::MainWindow *ui;
  19. };
  20. #endif // MAINWINDOW_H