#ifndef LIBSARIA_LIBRARY_H #define LIBSARIA_LIBRARY_H #include #include #include using namespace std; namespace libsaria { namespace library { struct PathInfo { string path; unsigned int size; }; void load(); void save(); void update(); void refresh(); void add_path(string); void play_id(ino_t); void for_each(void (*)(Track &)); void for_each_path(void (*)(struct PathInfo &)); unsigned int size(); } } #endif /* LIBSARIA_LIBRARY_H */