source: box/trunk/lib/server/LocalProcessStream.h @ 2597

Revision 2597, 525 bytes checked in by chris, 2 years ago (diff)

Revert the quotes part of [2588] as it breaks the unit tests.

Make LocalProcessStream? constructor take a std::string& for C++ style.

  • Property svn:eol-style set to native
Line 
1// --------------------------------------------------------------------------
2//
3// File
4//              Name:    LocalProcessStream.h
5//              Purpose: Opens a process, and presents stdin/stdout as a stream.
6//              Created: 12/3/04
7//
8// --------------------------------------------------------------------------
9
10#ifndef LOCALPROCESSSTREAM__H
11#define LOCALPROCESSSTREAM__H
12
13#include <memory>
14#include "IOStream.h"
15
16std::auto_ptr<IOStream> LocalProcessStream(const std::string& rCommandLine,
17        pid_t &rPidOut);
18
19#endif // LOCALPROCESSSTREAM__H
20
Note: See TracBrowser for help on using the repository browser.