/* */ #ifndef D_STREAM_FILE_ALLOCATION_ENTRY_H #define D_STREAM_FILE_ALLOCATION_ENTRY_H #include "FileAllocationEntry.h" namespace aria2 { class StreamFileAllocationEntry : public FileAllocationEntry { public: StreamFileAllocationEntry(RequestGroup* requestGroup, std::unique_ptr nextCommand = std::unique_ptr()); virtual ~StreamFileAllocationEntry(); virtual void prepareForNextAction (std::vector>& commands, DownloadEngine* e); }; } // namespace aria2 #endif // D_STREAM_FILE_ALLOCATION_ENTRY_H