/* */ #ifndef _D_DHT_SETUP_H_ #define _D_DHT_SETUP_H_ #include "common.h" class Logger; class Option; class DownloadEngine; class Command; typedef deque Commands; class DHTSetup { private: static size_t _initialized; const Logger* _logger; public: DHTSetup(); ~DHTSetup(); Commands setup(DownloadEngine* e, const Option* option); static bool initialized(); }; #endif // _D_DHT_SETUP_H_