Mercurial > minori
comparison include/services/kitsu.h @ 369:47c9f8502269
*: clang-format all the things
I've edited the formatting a bit. Now pointer asterisks (and reference
ampersands) are on the variable instead of the type, as well as having
newlines for function braces (but nothing else)
author | Paper <paper@tflc.us> |
---|---|
date | Fri, 25 Jul 2025 10:16:02 -0400 |
parents | b5d6c27c308f |
children |
comparison
equal
deleted
inserted
replaced
368:6d37a998cf91 | 369:47c9f8502269 |
---|---|
9 | 9 |
10 namespace Services { | 10 namespace Services { |
11 namespace Kitsu { | 11 namespace Kitsu { |
12 | 12 |
13 /* neither of these are stored in the config and only held temporarily */ | 13 /* neither of these are stored in the config and only held temporarily */ |
14 bool AuthorizeUser(const std::string& email, const std::string& password); | 14 bool AuthorizeUser(const std::string &email, const std::string &password); |
15 | 15 |
16 bool RetrieveAnimeMetadata(int id); | 16 bool RetrieveAnimeMetadata(int id); |
17 | 17 |
18 int GetAnimeList(); | 18 int GetAnimeList(); |
19 std::vector<int> Search(const std::string& search); | 19 std::vector<int> Search(const std::string &search); |
20 bool GetSeason(Anime::Season season); | 20 bool GetSeason(Anime::Season season); |
21 int UpdateAnimeEntry(int id); | 21 int UpdateAnimeEntry(int id); |
22 | 22 |
23 } // namespace Kitsu | 23 } // namespace Kitsu |
24 } // namespace Services | 24 } // namespace Services |