/* */ #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_