src/Setup.h

changeset 15
c58b82549713
child 16
a5d8e783a7b0
equal deleted inserted replaced
14:8a304c898a75 15:c58b82549713
1 #ifndef _SETUP_H
2 #define _SETUP_H
3
4 #include <QDialog>
5
6 namespace Ui {
7 class Setup;
8 }
9
10 class Setup : public QDialog
11 {
12 Q_OBJECT
13
14 public:
15 explicit Setup(QWidget *parent = nullptr);
16 ~Setup();
17
18 signals:
19 void firstWindow();
20
21 private slots:
22 void on_quitButton_clicked();
23 // void on_insertButton_clicked();
24 // void on_editButton_clicked();
25 // void refreshTable(void);
26
27 private:
28 Ui::Setup *ui;
29 };
30
31 #endif

mercurial