libsaria: Add fields for play count and last played date

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-03-18 13:52:43 -04:00
parent c38eaccf3a
commit 01d4819d15
2 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,10 @@ namespace libsaria
/* string lenstr;*/
unsigned int year;
unsigned int track;
unsigned int count;
unsigned int last_day;
unsigned int last_month;
unsigned int last_year;
int length;
int bitrate;
int sample;

View File

@ -42,6 +42,10 @@ namespace libsaria
{
filepath = file;
path = lib_path;
count = 0;
last_day = 0;
last_month = 0;
last_year = 0;
read_tags();
}