/* */ #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 (int32_t cuid, const SharedHandle& fileAllocMan, DownloadEngine* e); protected: virtual Command* createCommand (const SharedHandle& entry); }; } // namespace aria2 #endif // _D_FILE_ALLOCATION_DISPATCHER_COMMAND_H_