diff options
author | Steru <jerrydream111@gmail.com> | 2024-08-15 20:41:08 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-08-16 23:53:26 +0200 |
commit | 492a726497785e8072e76a415dbbfdbd498e1b92 (patch) | |
tree | 5bfa142e175fb0e667b3e0af794e1e59deac80ce /src/model/Competitor.h | |
parent | 70d5f014e50b9255dcb5c36122a109cc049c8936 (diff) |
Reworked Sport class to work with QObjects instead of JSON objects.
Diffstat (limited to 'src/model/Competitor.h')
-rw-r--r-- | src/model/Competitor.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/model/Competitor.h b/src/model/Competitor.h index 1121a5b..e5b0251 100644 --- a/src/model/Competitor.h +++ b/src/model/Competitor.h @@ -39,8 +39,19 @@ public: QString getName() { return this->name; } QString getNOC() { return this->noc; } + void setCode(int code) { this->code = code; } + void setName(QString name) { this->name = name; } + void setNOC(QString noc) { this->noc = noc; } + bool setCompetitor(const QJsonObject &competitor); + static bool compareName(const Competitor &left, const Competitor &right) { + return left.name.compare(right.name) < 0; + } + static bool compareNOC(const Competitor &left, const Competitor &right) { + return left.noc.compare(right.noc) < 0; + } + private: int code; QString name; |