app/headers/brcontroller.h

27 lines
429 B
C
Raw Normal View History

2020-10-31 15:16:06 +01:00
#ifndef BRCONTROLLER_H
#define BRCONTROLLER_H
#include <QObject>
#include "brproviderdr.h"
#include "brwidget.h"
class BRCalendar;
class BRController : public QObject
{
Q_OBJECT
public:
explicit BRController(QObject *parent = nullptr);
Q_INVOKABLE BRCalendar* getCalendar(BRWidget::BRFederation federation, int year, int league = 0);
private:
BRProvider* providerDr;
signals:
};
#endif // BRCONTROLLER_H