13 |
|
#pragma once |
14 |
|
#endif |
15 |
|
|
16 |
< |
#include <menes-ext/string.hpp> |
16 |
> |
#include <menes-api/path.hpp> |
17 |
|
|
18 |
|
struct MediaFile |
19 |
|
{ |
20 |
< |
ext::String name, artist, title, album, genre; |
21 |
< |
MediaFile(const ext::String& name); |
22 |
< |
MediaFile(const ext::String& name, const ext::String& artist, const ext::String& title, const ext::String& album, const ext::String& genre); |
20 |
> |
api::Path path; |
21 |
> |
ext::String artist, title, album, genre; |
22 |
> |
MediaFile(const api::Path& path); |
23 |
> |
MediaFile(const api::Path& path, const ext::String& artist, const ext::String& title, const ext::String& album, const ext::String& genre); |
24 |
|
}; |
25 |
|
|
26 |
|
#endif//_MediaFile_hpp_ |