aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ecc_key
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-09 14:40:38 +0000
committerlloyd <[email protected]>2008-10-09 14:40:38 +0000
commit643df89a37dd0f8d9c090825166231db4fdaa55c (patch)
tree886bce3a306c24797986f9e578bc4528acbef59e /src/pubkey/ecc_key
parentbd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (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.h4
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: