Parcourir la 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 il y a 10 ans
Parent
révision
8fcee57460
2 fichiers modifiés avec 10 ajouts et 2 suppressions
  1. 1
    1
      child.cpp
  2. 9
    1
      child.hpp

+ 1
- 1
child.cpp Voir le fichier

// 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 Voir le fichier



}; };


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

Chargement…
Annuler
Enregistrer