# | Line 15 | Line 15 | |
---|---|---|
15 | ||
16 | #include <menes-ext/string.hpp> | |
17 | ||
18 | < | class MediaFile |
18 | > | struct MediaFile |
19 | { | |
20 | < | private: |
21 | < | ext::String file; |
22 | < | public: |
23 | < | bool operator<(const MediaFile& file); |
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_ |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |