File indexing completed on 2024-05-12 05:39:26

0001 #ifndef MAINWINDOW_H
0002 #define MAINWINDOW_H
0003 
0004 #include <QMainWindow>
0005 
0006 class DiceParser;
0007 namespace Ui
0008 {
0009     class MainWindow;
0010 }
0011 
0012 class MainWindow : public QMainWindow
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     explicit MainWindow(QWidget* parent= 0);
0018     ~MainWindow();
0019 
0020 protected slots:
0021     void rollDiceCommand();
0022 
0023 private:
0024     Ui::MainWindow* ui;
0025     DiceParser* m_dieParser;
0026 };
0027 
0028 #endif // MAINWINDOW_H