Mercurial > minori
annotate include/core/anime_db.h @ 173:de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 28 Nov 2023 13:53:54 -0500 |
parents | c69230dc2b5d |
children | f88eda79c60a |
rev | line source |
---|---|
10 | 1 #ifndef __core__anime_db_h |
2 #define __core__anime_db_h | |
85 | 3 |
10 | 4 #include "core/anime.h" |
173
de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
5 #include "core/json.h" |
76 | 6 #include <string> |
10 | 7 #include <unordered_map> |
8 | |
9 namespace Anime { | |
10 | |
11 class Database { | |
12 public: | |
13 std::unordered_map<int, Anime> items; | |
14 int GetTotalAnimeAmount(); | |
15 int GetTotalEpisodeAmount(); | |
16 int GetTotalWatchedAmount(); | |
17 int GetTotalPlannedAmount(); | |
18 double GetAverageScore(); | |
19 double GetScoreDeviation(); | |
20 int GetListsAnimeAmount(ListStatus status); | |
83 | 21 int GetAnimeFromTitle(const std::string& title); |
173
de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
22 |
de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
23 bool GetDatabaseAsJSON(nlohmann::json& json); |
10 | 24 }; |
25 | |
11 | 26 extern Database db; |
10 | 27 |
28 } // namespace Anime | |
85 | 29 |
30 | |
10 | 31 #endif // __core__anime_db_h |