add support for composer, performer and disc tags

This commit is contained in:
unknown
2008-08-20 19:06:45 +02:00
parent 7497560b79
commit a41afee077
4 changed files with 89 additions and 25 deletions

View File

@@ -50,9 +50,9 @@ class Song
string GetYear() const;
string GetGenre() const;
//string GetName() const { return itsName; }
//string GetComposer() const { return itsComposer; }
//string GetPerformer() const { return itsPerformer; }
//string GetDisc() const { return itsDisc; }
string GetComposer() const;
string GetPerformer() const;
string GetDisc() const;
string GetComment() const;
string GetLength() const;
long long GetHash() const { return itsHash; }
@@ -92,9 +92,9 @@ class Song
//string itsName;
string itsYear;
string itsGenre;
//string itsComposer;
//string itsPerformer;
//string itsDisc;
string itsComposer;
string itsPerformer;
string itsDisc;
string itsComment;
long long itsHash;
int itsMinutesLength;
@@ -104,7 +104,5 @@ class Song
bool itsGetEmptyFields;
};
//void GetCurrentPlaylist(vector<Song> &);
#endif