blob: 749949a6f5b2686c544f6248cb05e587727f2207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QWidget>
class QAbstractButton;
namespace Ui {
class MainWindow;
}
class MainWindow : public QWidget
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_buttonBox_clicked(QAbstractButton *button);
private:
void closeEvent(QCloseEvent *);
Ui::MainWindow *m_ui;
};
#endif // MAINWINDOW_H
|