17 lines
510 B
C++
17 lines
510 B
C++
#ifndef UPDATE_JSON_COMMAND_H_INCLUDED
|
|
#define UPDATE_JSON_COMMAND_H_INCLUDED
|
|
|
|
#include "process/update_command.h"
|
|
|
|
class UpdateJsonCommand : public UpdateCommand {
|
|
public:
|
|
explicit UpdateJsonCommand(QString const &command,
|
|
Worker *worker,
|
|
int start_timeout = 100000,
|
|
int finish_timeout = 100000);
|
|
protected slots:
|
|
virtual void readyReadStandardOutput() override;
|
|
};
|
|
|
|
#endif // UPDATE_JSON_HANDLER_H_INCLUDED
|