/* */ #ifndef _D_DHT_SETUP_H_ #define _D_DHT_SETUP_H_ #include "common.h" #include namespace aria2 { class Logger; class DownloadEngine; class Command; class DHTSetup { private: Logger* logger_; public: DHTSetup(); ~DHTSetup(); void setup(std::vector& commands, DownloadEngine* e, int family); }; } // namespace aria2 #endif // _D_DHT_SETUP_H_