/* */ #ifndef _D_URI_SELECTOR_H_ #define _D_URI_SELECTOR_H_ #include "common.h" #include #include namespace aria2 { class URISelector { public: virtual ~URISelector() {} virtual std::string select(std::deque& uris) = 0; }; } // namespace aria2 #endif // _D_URI_SELECTOR_H_