blob: 85411b3e04cb148dc7205683caf1c43e82347b3e (
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
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_io_ByteArrayInputStream__
#define __java_io_ByteArrayInputStream__
#pragma interface
#include <java/io/InputStream.h>
#include <gcj/array.h>
class java::io::ByteArrayInputStream : public ::java::io::InputStream
{
public:
ByteArrayInputStream(JArray< jbyte > *);
ByteArrayInputStream(JArray< jbyte > *, jint, jint);
virtual jint available();
virtual void mark(jint);
virtual jboolean markSupported();
virtual jint read();
virtual jint read(JArray< jbyte > *, jint, jint);
virtual void reset();
virtual jlong skip(jlong);
public: // actually protected
JArray< jbyte > * __attribute__((aligned(__alignof__( ::java::io::InputStream)))) buf;
jint pos;
jint mark__;
jint count;
public:
static ::java::lang::Class class$;
};
#endif // __java_io_ByteArrayInputStream__
|