diff options
author | Steru <jerrydream111@gmail.com> | 2024-08-03 20:19:05 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-08-03 20:19:05 +0200 |
commit | d399c562f5fad76ed8018c712a635f49715a8fed (patch) | |
tree | ae54011fe27a607d43329ee4e9be98ad3a8fe770 /src/api/OlympicsAPI.h | |
parent | a767d83d81755710fc760a6d3dc040b4a379c16a (diff) |
Added another filter and sort functions. Also using mock data to test.
Diffstat (limited to 'src/api/OlympicsAPI.h')
-rw-r--r-- | src/api/OlympicsAPI.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/api/OlympicsAPI.h b/src/api/OlympicsAPI.h index 8efaa26..f1168b6 100644 --- a/src/api/OlympicsAPI.h +++ b/src/api/OlympicsAPI.h @@ -8,17 +8,10 @@ #include <string> #include <QJsonObject> -using namespace std; +// TODO: change this to true to use the olympics api, instead of the mock date in res/mock/ +#define USE_API_REQUEST false -/* - * TODO: - * Replace api request code snippet in main with: - * - OlympicsAPI api; - QJsonObject archery = api.getSportData(api.Archery); - qDebug() << "Competitor:" << archery["units"][0]["competitors"][0]["name"].toString(); - * - */ +using namespace std; class OlympicsAPI { |