blob: 1121a5bdcb0baefb4bfae6785e60486eac0aeb08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef ITAT_CHALLANGE_OLYMPICS_COMPETITOR_H
#define ITAT_CHALLANGE_OLYMPICS_COMPETITOR_H
#include <QString>
#include <QMap>
#include <QJsonObject>
#include <QAbstractListModel>
#include <stdexcept>
using namespace std;
class Competitor {
Q_OBJECT
Q_PROPERTY(int code READ code)
Q_PROPERTY(QString name READ name)
Q_PROPERTY(QString noc READ noc)
public:
Competitor() {
this->code = 0;
this->name = "na";
this->noc = "---";
}
Competitor(const Competitor &competitor) {
this->code = competitor.code;
this->name = competitor.name;
this->noc = competitor.noc;
}
Competitor(const QJsonObject &competitor) {
setCompetitor(competitor);
}
int getCode() { return this->code; }
QString getName() { return this->name; }
QString getNOC() { return this->noc; }
bool setCompetitor(const QJsonObject &competitor);
private:
int code;
QString name;
QString noc;
};
#endif //ITAT_CHALLANGE_OLYMPICS_COMPETITOR_H
|