// Media File // // Douglas Thrift // // $Id$ #include "MediaFile.hpp" MediaFile::MediaFile(const api::Path& path) : path(path) { // XXX: implement } MediaFile::MediaFile(const api::Path& path, const ext::String& artist, const ext::String& title, const ext::String& album, const ext::String& genre) : path(path), artist(artist), title(title), album(album), genre(genre) { // XXX: implement }