ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/DecentralizedMedia/MediaFile.cpp
(Generate patch)

Comparing DecentralizedMedia/MediaFile.cpp (file contents):
Revision 476 by douglas, 2005-06-08T13:41:10-07:00 vs.
Revision 478 by douglas, 2005-06-08T17:16:59-07:00

# Line 6 | Line 6
6  
7   #include "MediaFile.hpp"
8  
9 < bool MediaFile::operator<(const MediaFile& file) const
9 > MediaFile::MediaFile(const ext::String& name) : name(name)
10   {
11 <        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();
11 >        // XXX: implement
12 > }
13 >
14 > 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)
15 > {
16 >        // XXX: implement
17   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines