/* */ #ifndef D_FILE_ALLOCATION_DISPATCHER_COMMAND_H #define D_FILE_ALLOCATION_DISPATCHER_COMMAND_H #include "SequentialDispatcherCommand.h" #include "FileAllocationMan.h" namespace aria2 { class FileAllocationEntry; class FileAllocationDispatcherCommand : public SequentialDispatcherCommand { public: FileAllocationDispatcherCommand (cuid_t cuid, FileAllocationMan* fileAllocMan, DownloadEngine* e); protected: virtual std::unique_ptr createCommand(FileAllocationEntry* entry) CXX11_OVERRIDE; }; } // namespace aria2 #endif // D_FILE_ALLOCATION_DISPATCHER_COMMAND_H