summaryrefslogtreecommitdiff
path: root/include/OutPipe.h
blob: 467a89b4d07830abc48ca5de104ab04930e14c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __OUTPIPE_H__
#define __OUTPIPE_H__

#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;
};

#endif