/* */ #ifndef D_BT_ABORT_OUTSTANDING_REQUEST_EVENT_H #define D_BT_ABORT_OUTSTANDING_REQUEST_EVENT_H #include "common.h" #include namespace aria2 { class Piece; class BtAbortOutstandingRequestEvent { private: std::shared_ptr piece_; public: BtAbortOutstandingRequestEvent(const std::shared_ptr& piece); ~BtAbortOutstandingRequestEvent(); const std::shared_ptr& getPiece() const { return piece_; } }; } // namespace aria2 #endif // D_BT_ABORT_OUTSTANDING_REQUEST_EVENT_H