Mercurial > minori
annotate src/core/anime.cc @ 296:b2a4358da16c
scripts/win32: CRLF -> LF
this breaks win32 build scripts
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 13 May 2024 02:48:39 -0400 |
parents | 53e3c015a973 |
children | 91ac90a34003 |
rev | line source |
---|---|
9 | 1 /* |
2 * anime.cpp: defining of custom anime-related | |
3 * datatypes & variables | |
4 */ | |
5 #include "core/anime.h" | |
279 | 6 #include "core/anime_season.h" |
9 | 7 #include "core/date.h" |
8 #include "core/session.h" | |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
195
diff
changeset
|
9 #include "core/strings.h" |
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
81
diff
changeset
|
10 |
9 | 11 #include <algorithm> |
12 #include <string> | |
13 #include <vector> | |
275
22f9aacf6ac1
osx: don't dereference NULL pointers
Paper <paper@paper.us.eu.org>
parents:
265
diff
changeset
|
14 #include <cassert> |
9 | 15 |
16 namespace Anime { | |
17 | |
18 /* User list data */ | |
19 bool Anime::IsInUserList() const { | |
264 | 20 if (list_info_.has_value()) |
9 | 21 return true; |
22 return false; | |
23 } | |
24 | |
25 void Anime::AddToUserList() { | |
265
ff0b2052b234
*: add missing utf8proc files
Paper <paper@paper.us.eu.org>
parents:
264
diff
changeset
|
26 ListInformation list; |
264 | 27 list_info_.emplace(list); |
9 | 28 } |
29 | |
30 void Anime::RemoveFromUserList() { | |
31 list_info_.reset(); | |
32 } | |
33 | |
34 ListStatus Anime::GetUserStatus() const { | |
264 | 35 assert(list_info_.has_value()); |
9 | 36 return list_info_->status; |
37 } | |
38 | |
39 int Anime::GetUserProgress() const { | |
264 | 40 assert(list_info_.has_value()); |
9 | 41 return list_info_->progress; |
42 } | |
43 | |
44 int Anime::GetUserScore() const { | |
264 | 45 assert(list_info_.has_value()); |
9 | 46 return list_info_->score; |
47 } | |
48 | |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
49 std::string Anime::GetUserPresentableScore() const { |
264 | 50 assert(list_info_.has_value()); |
279 | 51 |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
52 const int score = list_info_->score; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
53 if (score == 0) |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
54 return ""; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
55 |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
56 switch (session.config.anime_list.score_format) { |
279 | 57 case ScoreFormat::Point10Decimal: |
211
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
Paper <mrpapersonic@gmail.com>
parents:
195
diff
changeset
|
58 return Strings::ToUtf8String(score / 10) + "." + Strings::ToUtf8String(score % 10); |
279 | 59 case ScoreFormat::Point10: return Strings::ToUtf8String(score / 10); |
60 case ScoreFormat::Point5: { | |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
61 std::string stars = ""; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
62 |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
63 for (int i = 0; i < 100; i += 20) |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
64 stars.append((i <= score) ? "★" : "☆"); |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
65 |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
66 return stars; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
67 } |
279 | 68 case ScoreFormat::Point3: { |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
69 if (score >= 100) |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
70 return ":)"; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
71 else if (score >= 66) |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
72 return ":|"; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
73 else if (score >= 33) |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
74 return ":("; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
75 else |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
76 return ""; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
77 } |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
78 default: |
279 | 79 case ScoreFormat::Point100: return Strings::ToUtf8String(score); |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
80 } |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
81 } |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
183
diff
changeset
|
82 |
9 | 83 Date Anime::GetUserDateStarted() const { |
264 | 84 assert(list_info_.has_value()); |
9 | 85 return list_info_->started; |
86 } | |
87 | |
88 Date Anime::GetUserDateCompleted() const { | |
264 | 89 assert(list_info_.has_value()); |
9 | 90 return list_info_->completed; |
91 } | |
92 | |
93 bool Anime::GetUserIsPrivate() const { | |
264 | 94 assert(list_info_.has_value()); |
9 | 95 return list_info_->is_private; |
96 } | |
97 | |
98 unsigned int Anime::GetUserRewatchedTimes() const { | |
264 | 99 assert(list_info_.has_value()); |
9 | 100 return list_info_->rewatched_times; |
101 } | |
102 | |
103 bool Anime::GetUserIsRewatching() const { | |
264 | 104 assert(list_info_.has_value()); |
9 | 105 return list_info_->rewatching; |
106 } | |
107 | |
108 uint64_t Anime::GetUserTimeUpdated() const { | |
264 | 109 assert(list_info_.has_value()); |
9 | 110 return list_info_->updated; |
111 } | |
112 | |
113 std::string Anime::GetUserNotes() const { | |
264 | 114 assert(list_info_.has_value()); |
9 | 115 return list_info_->notes; |
116 } | |
117 | |
118 void Anime::SetUserStatus(ListStatus status) { | |
264 | 119 assert(list_info_.has_value()); |
9 | 120 list_info_->status = status; |
121 } | |
122 | |
10 | 123 void Anime::SetUserScore(int score) { |
264 | 124 assert(list_info_.has_value()); |
10 | 125 list_info_->score = score; |
126 } | |
127 | |
9 | 128 void Anime::SetUserProgress(int progress) { |
264 | 129 assert(list_info_.has_value()); |
9 | 130 list_info_->progress = progress; |
131 } | |
132 | |
133 void Anime::SetUserDateStarted(Date const& started) { | |
264 | 134 assert(list_info_.has_value()); |
9 | 135 list_info_->started = started; |
136 } | |
137 | |
138 void Anime::SetUserDateCompleted(Date const& completed) { | |
264 | 139 assert(list_info_.has_value()); |
9 | 140 list_info_->completed = completed; |
141 } | |
142 | |
143 void Anime::SetUserIsPrivate(bool is_private) { | |
264 | 144 assert(list_info_.has_value()); |
9 | 145 list_info_->is_private = is_private; |
146 } | |
147 | |
148 void Anime::SetUserRewatchedTimes(int rewatched) { | |
264 | 149 assert(list_info_.has_value()); |
9 | 150 list_info_->rewatched_times = rewatched; |
151 } | |
152 | |
153 void Anime::SetUserIsRewatching(bool rewatching) { | |
264 | 154 assert(list_info_.has_value()); |
9 | 155 list_info_->rewatching = rewatching; |
156 } | |
157 | |
158 void Anime::SetUserTimeUpdated(uint64_t updated) { | |
264 | 159 assert(list_info_.has_value()); |
9 | 160 list_info_->updated = updated; |
161 } | |
162 | |
163 void Anime::SetUserNotes(std::string const& notes) { | |
264 | 164 assert(list_info_.has_value()); |
9 | 165 list_info_->notes = notes; |
166 } | |
167 | |
168 /* Series data */ | |
169 int Anime::GetId() const { | |
170 return info_.id; | |
171 } | |
172 | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
173 std::optional<std::string> Anime::GetServiceId(Service service) const { |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
174 if (info_.ids.find(service) == info_.ids.end()) |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
175 return std::nullopt; |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
176 |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
177 return info_.ids.at(service); |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
178 } |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
179 |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
180 /* note: this should use std::optional */ |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
181 std::optional<std::string> Anime::GetTitle(TitleLanguage language) const { |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
182 if (info_.titles.find(language) == info_.titles.end()) |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
183 return std::nullopt; |
9 | 184 |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
185 return info_.titles.at(language); |
9 | 186 } |
187 | |
188 std::vector<std::string> Anime::GetTitleSynonyms() const { | |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
189 /* mainly for the GUI */ |
9 | 190 std::vector<std::string> result; |
195
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
191 |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
192 auto add_to_synonyms = [this](std::vector<std::string>& vec, std::string key) { |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
193 if (!key.empty() && !std::count(vec.begin(), vec.end(), key) && key != GetUserPreferredTitle()) |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
194 vec.push_back(key); |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
195 }; |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
196 |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
197 for (const auto& lang : TitleLanguages) |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
198 if (info_.titles.find(lang) != info_.titles.end()) |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
199 add_to_synonyms(result, info_.titles.at(lang)); |
195
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
200 |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
201 for (auto& synonym : info_.synonyms) |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
202 add_to_synonyms(result, synonym); |
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
Paper <mrpapersonic@gmail.com>
parents:
186
diff
changeset
|
203 |
9 | 204 return result; |
205 } | |
206 | |
207 int Anime::GetEpisodes() const { | |
208 return info_.episodes; | |
209 } | |
210 | |
211 SeriesStatus Anime::GetAiringStatus() const { | |
212 return info_.status; | |
213 } | |
214 | |
215 Date Anime::GetAirDate() const { | |
216 return info_.air_date; | |
217 } | |
218 | |
219 std::vector<std::string> Anime::GetGenres() const { | |
220 return info_.genres; | |
221 } | |
222 | |
223 std::vector<std::string> Anime::GetProducers() const { | |
224 return info_.producers; | |
225 } | |
226 | |
227 SeriesFormat Anime::GetFormat() const { | |
228 return info_.format; | |
229 } | |
230 | |
231 SeriesSeason Anime::GetSeason() const { | |
279 | 232 std::optional<Date::Month> month = info_.air_date.GetMonth(); |
233 return (month.has_value() ? GetSeasonForMonth(month.value()) : SeriesSeason::Unknown); | |
9 | 234 } |
235 | |
236 int Anime::GetAudienceScore() const { | |
237 return info_.audience_score; | |
238 } | |
239 | |
240 std::string Anime::GetSynopsis() const { | |
241 return info_.synopsis; | |
242 } | |
243 | |
244 int Anime::GetDuration() const { | |
245 return info_.duration; | |
246 } | |
247 | |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
248 std::string Anime::GetPosterUrl() const { |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
249 /* this isn't really service-specific. this could use |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
250 * kitsu, MAL, or anilist, and would achieve basically |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
251 * the same effect. */ |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
252 return info_.poster_url; |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
253 } |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
254 |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
255 std::optional<std::string> Anime::GetServiceUrl(Service service) const { |
183
01d259b9c89f
pages/torrents.cc: parse feed descriptions separately
Paper <mrpapersonic@gmail.com>
parents:
178
diff
changeset
|
256 /* todo: add support for other services... */ |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
257 std::optional<std::string> id = GetServiceId(service); |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
258 if (!id.has_value()) |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
259 return std::nullopt; |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
260 |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
261 switch (service) { |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
262 case Service::AniList: |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
263 return "https://anilist.co/anime/" + id.value(); |
279 | 264 default: return ""; |
265 } | |
67
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
266 } |
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
267 |
9 | 268 void Anime::SetId(int id) { |
269 info_.id = id; | |
270 } | |
271 | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
272 void Anime::SetServiceId(Service service, const std::string& id) { |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
273 info_.ids[service] = id; |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
274 } |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
275 |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
276 void Anime::SetTitle(TitleLanguage language, const std::string& title) { |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
277 info_.titles[language] = title; |
9 | 278 } |
279 | |
280 void Anime::SetTitleSynonyms(std::vector<std::string> const& synonyms) { | |
281 info_.synonyms = synonyms; | |
282 } | |
283 | |
284 void Anime::AddTitleSynonym(std::string const& synonym) { | |
285 info_.synonyms.push_back(synonym); | |
286 } | |
287 | |
288 void Anime::SetEpisodes(int episodes) { | |
289 info_.episodes = episodes; | |
290 } | |
291 | |
292 void Anime::SetAiringStatus(SeriesStatus status) { | |
293 info_.status = status; | |
294 } | |
295 | |
296 void Anime::SetAirDate(Date const& date) { | |
297 info_.air_date = date; | |
298 } | |
299 | |
300 void Anime::SetGenres(std::vector<std::string> const& genres) { | |
301 info_.genres = genres; | |
302 } | |
303 | |
304 void Anime::SetProducers(std::vector<std::string> const& producers) { | |
305 info_.producers = producers; | |
306 } | |
307 | |
308 void Anime::SetFormat(SeriesFormat format) { | |
309 info_.format = format; | |
310 } | |
311 | |
312 void Anime::SetAudienceScore(int audience_score) { | |
313 info_.audience_score = audience_score; | |
314 } | |
315 | |
316 void Anime::SetSynopsis(std::string synopsis) { | |
317 info_.synopsis = synopsis; | |
318 } | |
319 | |
320 void Anime::SetDuration(int duration) { | |
321 info_.duration = duration; | |
322 } | |
323 | |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
324 void Anime::SetPosterUrl(std::string url) { |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
325 info_.poster_url = url; |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
326 } |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
327 |
9 | 328 std::string Anime::GetUserPreferredTitle() const { |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
329 std::optional<std::string> title = GetTitle(session.config.anime_list.language); |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
330 if (title.has_value()) |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
331 return title.value(); |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
332 |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
333 title = GetTitle(TitleLanguage::Romaji); |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
334 if (title.has_value()) |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
335 return title.value(); |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
336 |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
337 /* what? */ |
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
280
diff
changeset
|
338 return std::string(); |
9 | 339 } |
340 | |
341 } // namespace Anime |