#ifndef LIBSARIA_LIBRARY_SOURCE_H #define LIBSARIA_LIBRARY_SOURCE_H #include #include #include using namespace std; #include #include "path.h" class Library { private: map path_map; public: Library(); ~Library(); void add_path(string); void update_path(string); void list_all(list &); void play_id(ino_t); }; #endif /* LIBSARIA_LIBRARY_SOURCE_H */