Mercurial > minori
annotate include/services/anilist.h @ 187:9613d72b097e
*: multiple performance improvements
like marking `static const` when it makes sense...
date: change old stupid heap-based method to a structure which should
make copying the thing actually make a copy.
also many performance-based changes, like removing the std::tie
dependency and forward-declaring nlohmann json
*: replace every instance of QString::fromUtf8 to Strings::ToQString.
the main difference is that our function will always convert exactly
what is in the string, while some other times it would only convert
up to the nearest NUL byte
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Wed, 06 Dec 2023 13:43:54 -0500 |
| parents | 3d2decf093bb |
| children | c130f47f6f48 |
| rev | line source |
|---|---|
| 9 | 1 #ifndef __services__anilist_h |
| 2 #define __services__anilist_h | |
| 15 | 3 |
| 9 | 4 #include "core/anime.h" |
| 5 #include "core/json.h" | |
| 6 #include <curl/curl.h> | |
| 15 | 7 |
| 63 | 8 namespace Services { |
| 9 namespace AniList { | |
| 15 | 10 |
|
44
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
11 bool AuthorizeUser(); |
| 9 | 12 |
| 13 /* Read queries */ | |
| 14 int GetAnimeList(); | |
| 15 | |
| 16 /* Write queries (mutations) */ | |
| 17 int UpdateAnimeEntry(int id); | |
| 15 | 18 |
| 63 | 19 } // namespace AniList |
| 20 } // namespace Services | |
| 15 | 21 |
| 9 | 22 #endif // __services__anilist_h |
