#ifndef PODBEUTER_QUEUELOADER__H #define PODBEUTER_QUEUELOADER__H #include #include #include namespace podbeuter { class queueloader { public: queueloader(const std::string& file, pb_controller * c = 0); void reload(std::vector& downloads, bool remove_unplayed = false); private: std::string get_filename(const std::string& str); std::string queuefile; pb_controller * ctrl; }; } #endif