blob: 4a9befe707546b14edcf5a441a6ea3afa7d206ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __OUTPIPE_H__
#define __OUTPIPE_H__
#ifdef __cplusplus
#include <Handle.h>
class OutPipe : public Handle {
public:
OutPipe();
OutPipe(const OutPipe &);
virtual ~OutPipe();
void Hook();
virtual bool CanWrite();
virtual bool CanRead();
virtual String GetName();
private:
int p[2], hooked;
};
#else
#error This only works with a C++ compiler
#endif
#endif
|