Collecting basic statistics from won games
[impuzzle] / src / statisticsdialog.h
diff --git a/src/statisticsdialog.h b/src/statisticsdialog.h
new file mode 100644 (file)
index 0000000..714a014
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef STATISTICSDIALOG_H
+#define STATISTICSDIALOG_H
+
+#include <QDialog>
+
+class QLabel;
+class QVBoxLayout;
+
+class StatisticsDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    StatisticsDialog(QWidget *parent = 0);
+
+private:
+    QLabel *label_;
+    QVBoxLayout *mainLayout_;
+};
+
+#endif