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