Mercurial > minori
view include/gui/translate/anime.h @ 135:0a458cb26ff4
filesystem: move to using std::filesystem after C++17 switch
old compilers will croak compiling this, but it's not like we
*really* need to support them (they probably croak compiling
Qt as well)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 09 Nov 2023 18:01:56 -0500 |
parents | c4bb49c2f6eb |
children | f88eda79c60a |
line wrap: on
line source
#include "core/anime.h" namespace Translate { std::string ToString(const Anime::ListStatus status); std::string ToString(const Anime::SeriesFormat format); std::string ToString(const Anime::SeriesSeason season); std::string ToString(const Anime::SeriesStatus status); std::string ToString(const Anime::Services service); Anime::Services ToService(const std::string& str); std::string ToString(const Anime::TitleLanguage language); Anime::TitleLanguage ToLanguage(const std::string& str); } // namespace Translate