26 int system(
const QString &command)
override;
27 bool startProcess(
const QString &processName,
const QStringList &arguments)
override;
29 , QString * output =
nullptr)
override;
Real implementation of system console.
Definition: trikSystemConsole.h:23
bool startProcess(const QString &processName, const QStringList &arguments) override
Asynchronously starts given process with given arguments.
Definition: trikSystemConsole.cpp:30
bool startProcessSynchronously(const QString &processName, const QStringList &arguments, QString *output=nullptr) override
Synchronously starts given process with given arguments.
Definition: trikSystemConsole.cpp:35
int system(const QString &command) override
Executes given command on a system console. Returns return code of a command.
Definition: trikSystemConsole.cpp:25
Definition: brickFactory.h:21
Represents console of an OS.
Definition: systemConsoleInterface.h:22