compilation errors fixed
[official-gcc.git] / libjava / java / security / KeyPair.h
blobc6c607bb0e6c41466071b33439671c29ca978435
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
4 #ifndef __java_security_KeyPair__
5 #define __java_security_KeyPair__
7 #pragma interface
9 #include <java/lang/Object.h>
10 extern "Java"
12 namespace java
14 namespace security
16 class KeyPair;
17 class PrivateKey;
18 class PublicKey;
23 class java::security::KeyPair : public ::java::lang::Object
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$;
38 #endif // __java_security_KeyPair__