Mercurial > minori
annotate include/track/media.h @ 127:fb6033e8f872
builds: qttools5-dev-tools -> qttools5-dev
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 09 Nov 2023 01:20:29 -0500 |
parents | ab191e28e69d |
children | 0a458cb26ff4 |
rev | line source |
---|---|
64 | 1 #ifndef __track__media_h |
2 #define __track__media_h | |
3 #include "core/filesystem.h" | |
80 | 4 #include <unordered_map> |
64 | 5 |
6 namespace Track { | |
7 namespace Media { | |
8 | |
9 Filesystem::Path GetCurrentPlaying(); | |
114 | 10 std::unordered_map<std::string, std::string> GetFileElements(std::string basename); |
80 | 11 std::unordered_map<std::string, std::string> GetFileElements(Filesystem::Path path); |
64 | 12 |
13 } // namespace Media | |
14 } // namespace Track | |
15 | |
16 #endif // __track__media_h |