--- DecentralizedMedia/MediaFile.cpp 2005/06/08 20:41:10 476 +++ DecentralizedMedia/MediaFile.cpp 2005/06/09 00:16:59 478 @@ -6,7 +6,12 @@ #include "MediaFile.hpp" -bool MediaFile::operator<(const MediaFile& file) const +MediaFile::MediaFile(const ext::String& name) : name(name) { - return ext::Compare(name.GetData().Begin(), file.name.GetData().Begin(), name.GetData().GetSize() < file.name.GetData().GetSize() ? name.GetData().GetSize() : file.name.GetData().GetSize()) < 0 || name.GetData().GetSize() < file.name.GetData().GetSize(); + // XXX: implement +} + +MediaFile::MediaFile(const ext::String& name, const ext::String& artist, const ext::String& title, const ext::String& album, const ext::String& genre) : name(name), artist(artist), title(title), album(album), genre(genre) +{ + // XXX: implement }