/* */ #ifndef D_TIMED_HALT_COMMAND_H #define D_TIMED_HALT_COMMAND_H #include "TimeBasedCommand.h" namespace aria2 { class TimedHaltCommand:public TimeBasedCommand { private: bool forceHalt_; public: TimedHaltCommand (cuid_t cuid, DownloadEngine* e, time_t secondsToHalt, bool forceHalt=false); virtual ~TimedHaltCommand(); virtual void preProcess(); virtual void process(); }; } // namespace aria2 #endif // D_TIMED_HALT_COMMAND_H