/* */ #ifndef _D_FILE_ALLOCATION_DISPATCHER_COMMAND_H_ #define _D_FILE_ALLOCATION_DISPATCHER_COMMAND_H_ #include "Command.h" namespace aria2 { class DownloadEngine; class FileAllocationDispatcherCommand : public Command { private: DownloadEngine* _e; public: FileAllocationDispatcherCommand(int32_t cuid, DownloadEngine* e); virtual ~FileAllocationDispatcherCommand(); virtual bool execute(); }; } // namespace aria2 #endif // _D_FILE_ALLOCATION_DISPATCHER_COMMAND_H_