This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Pipes...
- From: John Love-Jensen <eljay at adobe dot com>
- To: Alcino Dall Igna Junior <alcino at lncc dot br>, GCC Help <gcc-help at gcc dot gnu dot org>
- Date: Thu, 05 Jun 2003 10:29:11 -0500
- Subject: Re: Pipes...
Hi Alcino,
To my knowledge, there is no equivalent to the fairly-platform-specific
popen(), pclose(), et al, which work with pipes in C++ as an abstracted
object, such as a C++ I/O Stream.
You can use popen(), pclose(), et al, in C++, just as you would in C.
You can wrap the functionality of popen(), pclose(), et al inside a helper
class (say, class Pipe) of your own devising.
Sincerely,
--Eljay