Mercurial > minori
view include/track/media.h @ 120:275da698697d
config: template-ify INI
now it's... slightly less ugly :')
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 08 Nov 2023 18:13:37 -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