From d24f813f3f2a05c112e803e4256b53535895fc98 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Wed, 14 Jul 2021 11:49:10 +1200 Subject: Initial mirror commit --- src/statistics/StudiedPage.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/statistics/StudiedPage.h (limited to 'src/statistics/StudiedPage.h') diff --git a/src/statistics/StudiedPage.h b/src/statistics/StudiedPage.h new file mode 100644 index 0000000..5ccb59b --- /dev/null +++ b/src/statistics/StudiedPage.h @@ -0,0 +1,18 @@ +#ifndef STUDIED_PAGE_H +#define STUDIED_PAGE_H + +#include "TimeChartPage.h" + +class StudiedPage: public TimeChartPage +{ + Q_OBJECT +public: + StudiedPage(const StatisticsParams* statParams); + QString getTitle() const { return tr("Studied cards"); } + +protected: + QList getDates(const CardPack* pack) const; + int getDataDirection() const { return -1; } +}; + +#endif -- cgit