summaryrefslogtreecommitdiff
path: root/libjava/java/nio/channels/Pipe.h
blob: 771dca23e3ec5308d820048555d75ffcbf7ca539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_nio_channels_Pipe__
#define __java_nio_channels_Pipe__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace java
  {
    namespace nio
    {
      namespace channels
      {
          class Pipe;
          class Pipe$SinkChannel;
          class Pipe$SourceChannel;
      }
    }
  }
}

class java::nio::channels::Pipe : public ::java::lang::Object
{

public: // actually protected
  Pipe();
public:
  static ::java::nio::channels::Pipe * open();
  virtual ::java::nio::channels::Pipe$SinkChannel * sink() = 0;
  virtual ::java::nio::channels::Pipe$SourceChannel * source() = 0;
  static ::java::lang::Class class$;
};

#endif // __java_nio_channels_Pipe__