blob: e9ecd46a582ab0b59b64fb8bd6965d3cadb146fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <QObject>
#include "EventInfo.h"
EventInfo::EventInfo(QObject *parent) : QObject(parent) {
}
QString EventInfo::eventName() const {
return m_eventName;
}
void EventInfo::setEventName(const QString &newEventName) {
m_eventName = newEventName;
}
QList<QString> EventInfo::competitors() const {
return m_competitors;
}
void EventInfo::setCompetitors(const QList<QString> &newCompetitors) {
m_competitors = newCompetitors;
}
|