/* */ #include "BtContextAwareCommand.h" #include "BtRegistry.h" #include "BtContext.h" #include "BtRuntime.h" #include "PieceStorage.h" #include "PeerStorage.h" #include "BtAnnounce.h" #include "BtProgressInfoFile.h" namespace aria2 { BtContextAwareCommand::BtContextAwareCommand(const BtContextHandle& btContext): btContext(btContext), btRuntime(BT_RUNTIME(btContext)), pieceStorage(PIECE_STORAGE(btContext)), peerStorage(PEER_STORAGE(btContext)), btAnnounce(BT_ANNOUNCE(btContext)), btProgressInfoFile(BT_PROGRESS_INFO_FILE(btContext)) {} BtContextAwareCommand::~BtContextAwareCommand() {} } // namespace aria2