/* */ #ifndef _D_BT_HAVE_NONE_MESSAGE_H_ #define _D_BT_HAVE_NONE_MESSAGE_H_ #include "ZeroBtMessage.h" namespace aria2 { class BtHaveNoneMessage; typedef SharedHandle BtHaveNoneMessageHandle; class BtHaveNoneMessage : public ZeroBtMessage { public: BtHaveNoneMessage():ZeroBtMessage(ID, NAME) {} static const uint8_t ID = 15; static const std::string NAME; static SharedHandle create (const unsigned char* data, size_t dataLength); virtual void doReceivedAction(); }; } // namespace aria2 #endif // _D_BT_HAVE_NONE_MESSAGE_H_