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.
19 lines
376 B
C++
19 lines
376 B
C++
#ifndef SEASONSERVICE_H
|
|
#define SEASONSERVICE_H
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include "data/season.h"
|
|
#include "service.h"
|
|
#include "core_global.h"
|
|
|
|
class CORESHARED_EXPORT SeasonService : public Service<Season>
|
|
{
|
|
public:
|
|
SeasonService() = default;
|
|
QSharedPointer<Season> active();
|
|
void activate(const QSharedPointer<Season>& season);
|
|
};
|
|
|
|
#endif // SEASONSERVICE_H
|