Utils: Add QtcProcess::setStandardInputFile

Needed for SshProcess.

Change-Id: Id3c8ca0cc86d7a515371fb3651e2d186cbea4df6
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2021-06-28 17:39:14 +02:00
parent 5ead2afeeb
commit 13ad1351b0
2 changed files with 7 additions and 0 deletions

View File

@@ -444,6 +444,11 @@ bool QtcProcess::keepsWriteChannelOpen() const
return d->m_process->m_keepStdInOpen;
}
void QtcProcess::setStandardInputFile(const QString &inputFile)
{
d->m_process->setStandardInputFile(inputFile);
}
void QtcProcess::setRemoteProcessHooks(const DeviceProcessHooks &hooks)
{
s_deviceHooks = hooks;