Browse Source

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 9 years ago
parent
commit
8fcee57460
2 changed files with 10 additions and 2 deletions
  1. 1
    1
      child.cpp
  2. 9
    1
      child.hpp

+ 1
- 1
child.cpp View File

// 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 View File



}; };


/// 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.

Loading…
Cancel
Save