#ifndef __PICKER_H #define __PICKER_H #include #include #include "immsconf.h" #include "fetcher.h" #define MAX_RATING 150 #define MIN_RATING 75 class SongPicker : protected InfoFetcher { public: SongPicker(); int select_next(); protected: bool add_candidate(bool urgent = false); void revalidate_current(int pos, const std::string &path); void do_events(); void identify_more(); void reset(); bool playlist_ready; SongData current; private: int acquired, attempts; SongData winner; typedef std::list Candidates; Candidates candidates; }; #endif