Icons for 2. Bundesliga (Germany) still have to be sorted.
[buliscores] / src / livescores.h
1 #ifndef LIVESCORES_H
2 #define LIVESCORES_H
3
4 #include <QObject>
5 #include "match.h"
6
7 class LiveScores : public QObject
8 {
9     Q_OBJECT
10
11 private:
12     QList<Match*>   m_matchlist;
13
14 public:
15     explicit LiveScores(QObject *parent = 0);
16
17     Match*        getMatch(QString hometeam, QString awayteam);
18     QList<Match*> getMatchList();
19
20 signals:
21
22 public slots:
23
24 };
25
26 #endif // LIVESCORES_H