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