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