19 |
|
class MediaFile |
20 |
|
{ |
21 |
|
private: |
22 |
< |
mutable _P<dbi::Connection> connection; |
22 |
> |
mutable _R<dbi::Connection> connection; |
23 |
|
public: |
24 |
|
api::Path path; |
25 |
|
cse::String artist, title, album, genre; |
26 |
< |
MediaFile(_P<dbi::Connection>& connection, const api::Path& path); |
27 |
< |
MediaFile(_P<dbi::Connection>& connection, const api::Path& path, const cse::String& artist, const cse::String& title, const cse::String& album, const cse::String& genre, const api::Path& root); |
26 |
> |
MediaFile(_R<dbi::Connection>& connection, const api::Path& path); |
27 |
> |
MediaFile(_R<dbi::Connection>& connection, const api::Path& path, const cse::String& artist, const cse::String& title, const cse::String& album, const cse::String& genre, const api::Path& root); |
28 |
|
}; |
29 |
|
|
30 |
|
#endif//_MediaFile_hpp_ |