Advertisement
Guest User

mainwindow.h

a guest
Sep 18th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include "ui_mainwindow.h"
  5.  
  6. class MainWindow : public QMainWindow, private Ui::MainWindow
  7. {
  8.     Q_OBJECT
  9.  
  10. public:
  11.     explicit MainWindow(QWidget *parent = nullptr);
  12. private slots:
  13.     void on_pushButton_clicked();
  14. };
  15.  
  16. #endif // MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement