/* */ #ifndef _D_DEFAULT_PEER_LIST_PROCESSOR_H_ #define _D_DEFAULT_PEER_LIST_PROCESSOR_H_ #include "PeerListProcessor.h" namespace aria2 { class DefaultPeerListProcessor : public PeerListProcessor { public: DefaultPeerListProcessor(); virtual ~DefaultPeerListProcessor(); virtual void extractPeer (std::deque >& peers, const MetaEntry* peersEntry); virtual bool canHandle(const MetaEntry* peersEntry) const; }; } // namespace aria2 #endif // _D_DEFAULT_PEER_LIST_PROCESSOR_H_