Mercurial > minori
view include/track/media.h @ 122:bc218c9d2ea6
strings: convert ToInt() to be a template
ini: conform to new strings.cc changes
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 08 Nov 2023 21:36:09 -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