summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/InstanceF.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/InstanceF.h')
-rw-r--r--cpp/src/IceSSL/InstanceF.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceSSL/InstanceF.h b/cpp/src/IceSSL/InstanceF.h
index f3b825e43e1..b0a9b49192e 100644
--- a/cpp/src/IceSSL/InstanceF.h
+++ b/cpp/src/IceSSL/InstanceF.h
@@ -11,26 +11,26 @@
#define ICESSL_INSTANCE_F_H
#include <IceUtil/Shared.h>
-
#include <Ice/Handle.h>
+#include <IceSSL/Plugin.h>
namespace IceSSL
{
class Instance;
-IceUtil::Shared* upCast(Instance*);
+ICESSL_API IceUtil::Shared* upCast(Instance*);
typedef IceInternal::Handle<Instance> InstancePtr;
class EndpointI;
#ifdef ICE_CPP11_MAPPING
typedef ::std::shared_ptr<EndpointI> EndpointIPtr;
#else
-IceUtil::Shared* upCast(EndpointI*);
+ICESSL_API IceUtil::Shared* upCast(EndpointI*);
typedef IceInternal::Handle<EndpointI> EndpointIPtr;
#endif
class AcceptorI;
-IceUtil::Shared* upCast(AcceptorI*);
+ICESSL_API IceUtil::Shared* upCast(AcceptorI*);
typedef IceInternal::Handle<AcceptorI> AcceptorIPtr;
}