1 |
// Media File |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _MediaFile_hpp_ |
8 |
#define _MediaFile_hpp_ |
9 |
|
10 |
#include <menes/platform.hpp> |
11 |
|
12 |
#ifdef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#include <menes-ext/string.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); |
23 |
}; |
24 |
|
25 |
#endif//_MediaFile_hpp_ |