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
|