Mercurial > minori
comparison include/services/services.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 |
---|---|
14 /* true = metadata was retrieved | 14 /* true = metadata was retrieved |
15 * false = metadata failed to be retrieved OR | 15 * false = metadata failed to be retrieved OR |
16 * no metadata to be retrieved */ | 16 * no metadata to be retrieved */ |
17 bool RetrieveAnimeMetadata(int id); | 17 bool RetrieveAnimeMetadata(int id); |
18 | 18 |
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 void UpdateAnimeEntry(int id); | 21 void UpdateAnimeEntry(int id); |
22 | 22 |
23 }; // namespace Services | 23 }; // namespace Services |
24 | 24 |