#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