diff options
author | lloyd <[email protected]> | 2008-10-09 14:40:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-09 14:40:38 +0000 |
commit | 643df89a37dd0f8d9c090825166231db4fdaa55c (patch) | |
tree | 886bce3a306c24797986f9e578bc4528acbef59e /src/pubkey/ecc_key | |
parent | bd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (diff) |
Add BOTAN_DLL macro to public class definitions that were missing it.
Diffstat (limited to 'src/pubkey/ecc_key')
-rw-r--r-- | src/pubkey/ecc_key/ecc_key.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h index d884b3d95..aada1da1b 100644 --- a/src/pubkey/ecc_key/ecc_key.h +++ b/src/pubkey/ecc_key/ecc_key.h @@ -27,7 +27,7 @@ namespace Botan { * cannot be used for verification until its domain parameters are set * by calling the corresponding member function. */ -class EC_PublicKey : public virtual Public_Key +class BOTAN_DLL EC_PublicKey : public virtual Public_Key { public: @@ -116,7 +116,7 @@ class EC_PublicKey : public virtual Public_Key /** * This abstract class represents general EC Private Keys */ -class EC_PrivateKey : public virtual EC_PublicKey, public virtual Private_Key +class BOTAN_DLL EC_PrivateKey : public virtual EC_PublicKey, public virtual Private_Key { public: |