libsaria: Remove unused LibraryPath function

I don't need to get the list of tracks anymore, now that my for_each
function has been removed.
This commit is contained in:
Bryan Schumaker 2011-12-29 20:46:01 -05:00
parent d74efc6022
commit df7e677bf2
2 changed files with 0 additions and 6 deletions

View File

@ -23,11 +23,6 @@ string LibraryPath::get_path()
return path;
}
list<libsaria::Track> *LibraryPath::get_list()
{
return &file_list;
}
void LibraryPath::get_info(void (*info_func)(struct libsaria::library::PathInfo &))
{
struct libsaria::library::PathInfo info;

View File

@ -22,7 +22,6 @@ class LibraryPath
~LibraryPath();
void load_file(InFile &, string);
list<libsaria::Track> *get_list();
string get_path();
void get_info(void (*)(struct libsaria::library::PathInfo &));
void insert_track(sid_t &inode, libsaria::Track &);