summaryrefslogtreecommitdiff
path: root/src/statistics/StatisticsParams.h
blob: 9a805c6f4f50e1b63c9a2ea2c6947e3ae3f2222a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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