// -------------------------------------------------------------------------- // // File // Name: LocalProcessStream.h // Purpose: Opens a process, and presents stdin/stdout as a stream. // Created: 12/3/04 // // -------------------------------------------------------------------------- #ifndef LOCALPROCESSSTREAM__H #define LOCALPROCESSSTREAM__H #include #include "IOStream.h" std::auto_ptr LocalProcessStream(const char *CommandLine, pid_t &rPidOut); #endif // LOCALPROCESSSTREAM__H