add support for composer, performer and disc tags
This commit is contained in:
14
src/song.h
14
src/song.h
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user