summaryrefslogtreecommitdiff
path: root/src/statistics/StatisticsParams.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/statistics/StatisticsParams.h')
-rw-r--r--src/statistics/StatisticsParams.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/statistics/StatisticsParams.h b/src/statistics/StatisticsParams.h
new file mode 100644
index 0000000..9a805c6
--- /dev/null
+++ b/src/statistics/StatisticsParams.h
@@ -0,0 +1,20 @@
+#ifndef STATISTICS_PARAMS_H
+#define STATISTICS_PARAMS_H
+
+class CardPack;
+
+class StatisticsParams
+{
+public:
+ static const int Week = 7;
+
+public:
+ const CardPack* getCardPack() const { return cardPack; }
+ int getTimePeriod() const { return timePeriod; }
+
+protected:
+ const CardPack* cardPack;
+ int timePeriod;
+};
+
+#endif