libsaria: Make some track variables public

This should be easier than making a bunch of getters or setters.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-11-24 16:56:40 -05:00 committed by Anna Schumaker
parent 05bbad5444
commit aaf1205078
1 changed files with 7 additions and 7 deletions

View File

@ -54,6 +54,13 @@ namespace libsaria
list<libsaria::Playlist *> playlists;
set<string> substrs;
string *artist_lc;
string *album_lc;
void read_tags();
void mark_played();
void find_substrs();
public:
string filepath;
string title;
string artist;
@ -74,13 +81,6 @@ namespace libsaria
int channels;
bool banned;
string *artist_lc;
string *album_lc;
void read_tags();
void mark_played();
void find_substrs();
public:
Track();
Track(string);
Track(string, library::Path *);