15 lines
523 B
C
15 lines
523 B
C
|
#ifndef CHECK_UPDATE_ACTIVATION_COMMAND_H_INCLUDED
|
||
|
#define CHECK_UPDATE_ACTIVATION_COMMAND_H_INCLUDED
|
||
|
|
||
|
#include "update_command.h"
|
||
|
|
||
|
class CheckUpdateActivationCommand : public UpdateCommand {
|
||
|
public:
|
||
|
explicit CheckUpdateActivationCommand(QString const &command,
|
||
|
Worker *worker,
|
||
|
int start_timeout = 100000,
|
||
|
int finish_timeout = 100000);
|
||
|
};
|
||
|
|
||
|
#endif // CHECK_UPDATE_ACTIVATION_COMMAND_H_INCLUDED
|