You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
629 B
C
21 lines
629 B
C
9 years ago
|
#ifndef NUMBERSERIESSERVICE_H
|
||
|
#define NUMBERSERIESSERVICE_H
|
||
|
|
||
|
#include "data/numberseries.h"
|
||
|
#include "data/season.h"
|
||
|
#include "service.h"
|
||
|
#include "core_global.h"
|
||
|
|
||
|
class CORESHARED_EXPORT NumberSeriesService : public Service<NumberSeries>
|
||
|
{
|
||
|
public:
|
||
|
NumberSeriesService();
|
||
|
|
||
|
QSharedPointer<NumberSeries> forPluginAndSeason(QString pluginId, QSharedPointer<Season> season);
|
||
|
QSharedPointer<NumberSeries> forPlugin(QString pluginId);
|
||
|
QSharedPointer<NumberSeries> nextForPlugin(QString pluginId);
|
||
|
QList<QSharedPointer<NumberSeries> > allForSeason(QSharedPointer<Season> season);
|
||
|
};
|
||
|
|
||
|
#endif // NUMBERSERIESSERVICE_H
|