view 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
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