popenplusplus


popen++ is a C++ library that allows you to run a child process and have its input, output and error avaliable as standard C++ streams.

popen++ is a C++ library that allows you to run a child process and have its input, output and error avaliable as standard C++ streams.

Sample

``` process::popen child = process::popen2("python");

child.stdin() << "print 'TEST STRING'" << std::flush; child.close_stdin();

std::ostringstream out; out << child.stdout().rdbuf() << std::flush; ```

Depends

Links

Project Information

Labels:
CPlusPlus Process