ATBUpdateTool/UpdatePTUDevCtrl/process/check_and_fetch_customer_repository_command.h

20 lines
864 B
C
Raw Normal View History

2025-02-05 16:25:01 +01:00
#ifndef CHECK_AND_FETCH_CUSTOMER_REPOSITORY_COMMAND_H_INCLUDED
#define CHECK_AND_FETCH_CUSTOMER_REPOSITORY_COMMAND_H_INCLUDED
#include "update_command.h"
class CheckAndFetchCustomerRepositoryCommand : public UpdateCommand {
public:
explicit CheckAndFetchCustomerRepositoryCommand(QString const &command,
Worker *worker,
2025-02-14 13:20:42 +01:00
int nextCommandIndex,
2025-02-05 16:25:01 +01:00
int start_timeout = 100000,
int finish_timeout = 100000);
2025-02-21 12:43:15 +01:00
QString m_commandResult{};
2025-02-14 13:20:42 +01:00
public slots:
virtual void readyReadStandardOutput() override;
2025-02-14 13:20:42 +01:00
virtual void finished(int exitCode, QProcess::ExitStatus exitStatus) override;
2025-02-05 16:25:01 +01:00
};
#endif // CHECK_AND_FETCH_CUSTOMER_REPOSITORY_COMMAND_H_INCLUDED