/* */ #ifndef _D_URI_SELECTOR_H_ #define _D_URI_SELECTOR_H_ #include "common.h" #include #include namespace aria2 { class DownloadCommand; class FileEntry; class URISelector { public: virtual ~URISelector() {} virtual std::string select(FileEntry* fileEntry) = 0; virtual void tuneDownloadCommand(const std::deque& uris, DownloadCommand* command) {}; virtual void resetCounters() { return; }; }; } // namespace aria2 #endif // _D_URI_SELECTOR_H_