1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 3
4 #include <QMainWindow>
5 #include "tabellone.h"
6 6
7 namespace Ui {
8 class MainWindow;
9 }
10 10
11 class MainWindow : public QMainWindow
12 {
13 Q_OBJECT
14 14
15 public:
16 explicit MainWindow(QWidget *parent = 0);
17 ~MainWindow();
18 18
19 private slots:
20 void on_btnUno_clicked();
21 21
22 void on_btnDue_clicked();
23 23
24 private:
25 Ui::MainWindow *ui;
26 Tabellone *a;
27 };
28 28
29 #endif // MAINWINDOW_H
30