blob: 75de07ded16b520b8ac7cdd4f93dcc2beb70f56f (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_net_protocol_ftp_CompressedInputStream__
#define __gnu_java_net_protocol_ftp_CompressedInputStream__
#pragma interface
#include <gnu/java/net/protocol/ftp/DTPInputStream.h>
#include <gcj/array.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace net
{
namespace protocol
{
namespace ftp
{
class CompressedInputStream;
class DTP;
}
}
}
}
}
}
class gnu::java::net::protocol::ftp::CompressedInputStream : public ::gnu::java::net::protocol::ftp::DTPInputStream
{
public: // actually package-private
CompressedInputStream(::gnu::java::net::protocol::ftp::DTP *, ::java::io::InputStream *);
public:
virtual jint read();
virtual jint read(JArray< jbyte > *);
virtual jint read(JArray< jbyte > *, jint, jint);
public: // actually package-private
virtual void readHeader();
virtual void readCodeHeader();
static const jint EOF = 64;
static const jint RAW = 0;
static const jint COMPRESSED = 128;
static const jint FILLER = 192;
jint __attribute__((aligned(__alignof__( ::gnu::java::net::protocol::ftp::DTPInputStream)))) descriptor;
jint max;
jint count;
jint state;
jint rep;
jint n;
public:
static ::java::lang::Class class$;
};
#endif // __gnu_java_net_protocol_ftp_CompressedInputStream__
|