Mercurial > minori
view include/track/media.h @ 125:4067388485c1
builds: use debian instead of alpine
alpine is very keen on breaking (probably because I was using edge)
and personally I like debian a lot more
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 09 Nov 2023 01:15:49 -0500 |
parents | ab191e28e69d |
children | 0a458cb26ff4 |
line wrap: on
line source
#ifndef __track__media_h #define __track__media_h #include "core/filesystem.h" #include <unordered_map> namespace Track { namespace Media { Filesystem::Path GetCurrentPlaying(); std::unordered_map<std::string, std::string> GetFileElements(std::string basename); std::unordered_map<std::string, std::string> GetFileElements(Filesystem::Path path); } // namespace Media } // namespace Track #endif // __track__media_h