annotate include/track/media.h @ 128:859d2a957940
cmake: set CXX_STANDARD to 17
builds: get wget on linux, don't attempt to mount binfmt_misc on win32/64
I'd prefer staying on C++11, but if constexpr is just so damn sexy...
author |
Paper <mrpapersonic@gmail.com> |
date |
Thu, 09 Nov 2023 02:28:22 -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
|