浏览代码

Cosmetic change to error message.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@50 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz 10 年前
父节点
当前提交
8fcee57460
共有 2 个文件被更改,包括 10 次插入2 次删除
  1. 1
    1
      child.cpp
  2. 9
    1
      child.hpp

+ 1
- 1
child.cpp 查看文件

// Check whether the process is running, and get the exit code. // Check whether the process is running, and get the exit code.
if (!isDone()) { if (!isDone()) {
throw std::logic_error("Child process was still running"
throw std::logic_error("Child process was still running "
"when result() was called"); "when result() was called");
} }

+ 9
- 1
child.hpp 查看文件



}; };


/// Stream buffer for reading to the stdout of the child process;
/// Stream buffer for reading from the stdout of the child process;
ReadStreambuf readStreambuf; ReadStreambuf readStreambuf;


/// Stream buffer for writing to the stdin of the child process; /// Stream buffer for writing to the stdin of the child process;
*/ */
void run(); void run();


/** Check if input is available.

\returns true if at least one character is available for
reading.

*/
//bool hasData();

/** Terminite the child process. /** Terminite the child process.


\throws runtime_error if an error occurs. \throws runtime_error if an error occurs.

正在加载...
取消
保存