Mercurial > minori
view include/track/media.h @ 136:7d3ad9529c4c
ini: fix bool getters to provide default vals for bools and ints
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 10 Nov 2023 10:07:01 -0500 |
parents | 0a458cb26ff4 |
children | 28842a8d0c6b |
line wrap: on
line source
#ifndef __track__media_h #define __track__media_h #include "core/filesystem.h" #include <unordered_map> namespace Track { namespace Media { std::filesystem::path GetCurrentPlaying(); std::unordered_map<std::string, std::string> GetFileElements(const std::string& basename); std::unordered_map<std::string, std::string> GetFileElements(const std::filesystem::path& path); } // namespace Media } // namespace Track #endif // __track__media_h