OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / classpath / jdwp / util / LineTable.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __gnu_classpath_jdwp_util_LineTable__
5 #define __gnu_classpath_jdwp_util_LineTable__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 #include <gcj/array.h>
11
12 extern "Java"
13 {
14   namespace gnu
15   {
16     namespace classpath
17     {
18       namespace jdwp
19       {
20         namespace util
21         {
22             class LineTable;
23         }
24       }
25     }
26   }
27 }
28
29 class gnu::classpath::jdwp::util::LineTable : public ::java::lang::Object
30 {
31
32 public:
33   LineTable(jlong, jlong, JArray< jint > *, JArray< jlong > *);
34   virtual void write(::java::io::DataOutputStream *);
35 private:
36   jlong __attribute__((aligned(__alignof__( ::java::lang::Object)))) start;
37   jlong end;
38   JArray< jint > * lineNum;
39   JArray< jlong > * lineCI;
40 public:
41   static ::java::lang::Class class$;
42 };
43
44 #endif // __gnu_classpath_jdwp_util_LineTable__