summaryrefslogtreecommitdiff
path: root/lib/server/LocalProcessStream.h
blob: 490c0f45d3d0a3221309c8f0887b70923cb28850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// --------------------------------------------------------------------------
//
// 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 <memory>
#include "IOStream.h"

std::auto_ptr<IOStream> LocalProcessStream(const char *CommandLine, pid_t &rPidOut);

#endif // LOCALPROCESSSTREAM__H