Collecting basic statistics from won games
[impuzzle] / src / statisticsdialog.h
1 #ifndef STATISTICSDIALOG_H
2 #define STATISTICSDIALOG_H
3
4 #include <QDialog>
5
6 class QLabel;
7 class QVBoxLayout;
8
9 class StatisticsDialog : public QDialog
10 {
11     Q_OBJECT
12
13 public:
14     StatisticsDialog(QWidget *parent = 0);
15
16 private:
17     QLabel *label_;
18     QVBoxLayout *mainLayout_;
19 };
20
21 #endif