/* */ #ifndef _D_TIMED_HALT_COMMAND_H_ #define _D_TIMED_HALT_COMMAND_H_ #include "TimeBasedCommand.h" namespace aria2 { class TimedHaltCommand:public TimeBasedCommand { public: TimedHaltCommand(int32_t cuid, DownloadEngine* e, time_t secondsToHalt); virtual ~TimedHaltCommand(); virtual void preProcess(); virtual void process(); }; } // namespace aria2 #endif // _D_TIMED_HALT_COMMAND_H_