| 63 | } |
| 64 | |
| 65 | qint64 EngineProcess::bytesAvailable() const |
| 66 | { |
| 67 | qint64 n = QIODevice::bytesAvailable(); |
| 68 | |
| 69 | if (!m_started) |
| 70 | return n; |
| 71 | return m_reader->bytesAvailable() + n; |
| 72 | } |
| 73 | |
| 74 | bool EngineProcess::canReadLine() const |
| 75 | { |
nothing calls this directly
no outgoing calls
no test coverage detected