Minor: added aux function

This commit is contained in:
Gerhard Hoffmann 2025-02-21 12:38:54 +01:00
parent 037b91b889
commit 618430bcc5

View File

@ -32,8 +32,11 @@ public:
int start_timeout = 100000,
int finish_timeout = 100000);
void resetCommandResult() { m_commandResult.clear(); }
QString getCommandResult(bool reset = false);
QString command() const { return m_command; }
QString const &command() const { return m_command; }
QString const &commandResult() const { return m_commandResult; }
QStringList const &args() const { return m_args; }
bool exec();
int exitCode() const { return m_exitCode; }