ocarina/include/libsaria/track.h
Bryan Schumaker 0326b9c7e4 libsaria: Add accessor functions for Track and Tag classes
I need to get at these variables to add them to a list in the UI
2011-09-19 19:47:31 -04:00

27 lines
410 B
C++

#ifndef LIBSARIA_TRACK_H
#define LIBSARIA_TRACK_H
#include <libsaria/tags.h>
#include <sys/types.h>
class Track
{
private:
ino_t inode;
TrackTag *tags;
public:
Track(ino_t, TrackTag *);
~Track();
ino_t get_inode();
unsigned int get_track();
string get_title();
string get_lenstr();
string get_artist();
string get_album();
unsigned int get_year();
};
#endif /* LIBSARIA_TRACK_H */