diff options
Diffstat (limited to 'Source/CTest/cmProcess.h')
-rw-r--r-- | Source/CTest/cmProcess.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/CTest/cmProcess.h b/Source/CTest/cmProcess.h index 8b943c0..9def390 100644 --- a/Source/CTest/cmProcess.h +++ b/Source/CTest/cmProcess.h @@ -41,9 +41,7 @@ public: bool StartProcess(); // return process state - int CheckOutput(double timeout, - std::string& stdOutLine, - std::string& stdErrLine); + int CheckOutput(double timeout); // return the process status int GetProcessStatus(); // return true if the process is running @@ -54,6 +52,7 @@ public: void SetId(int id) { this->Id = id;} int GetExitValue() { return this->ExitValue;} double GetTotalTime() { return this->TotalTime;} + bool GetNextOutputLine(std::string& stdOutLine, std::string& stdErrLine); private: int LastOutputPipe; double Timeout; |