summaryrefslogtreecommitdiff
path: root/include/InPipe.h
blob: 7b77c4ed51aec71b5135738026723a48afc7a81f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __INPIPE_H__
#define __INPIPE_H__

#include <Handle.h>

class InPipe : public Handle {
  public:
      InPipe();
      InPipe(const InPipe &);
      virtual ~InPipe();
    void Hook();
    virtual bool CanWrite();
    virtual bool CanRead();
    virtual String GetName();
    void HalfClose();
  private:
    int p[2];
    bool hooked, halfclosed;
};

#endif