OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / libjava / java / security / KeyPair.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __java_security_KeyPair__
5 #define __java_security_KeyPair__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 extern "Java"
11 {
12   namespace java
13   {
14     namespace security
15     {
16         class KeyPair;
17         class PrivateKey;
18         class PublicKey;
19     }
20   }
21 }
22
23 class java::security::KeyPair : public ::java::lang::Object
24 {
25
26 public:
27   KeyPair(::java::security::PublicKey *, ::java::security::PrivateKey *);
28   ::java::security::PublicKey * getPublic();
29   ::java::security::PrivateKey * getPrivate();
30 private:
31   static const jlong serialVersionUID = -7565189502268009837LL;
32   ::java::security::PublicKey * __attribute__((aligned(__alignof__( ::java::lang::Object)))) publicKey;
33   ::java::security::PrivateKey * privateKey;
34 public:
35   static ::java::lang::Class class$;
36 };
37
38 #endif // __java_security_KeyPair__