diff options
author | Jose <jose@zeroc.com> | 2017-03-16 16:11:24 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-16 16:11:24 +0100 |
commit | c6f4057a8975e2312d82f22af59f2069d2b5e8ab (patch) | |
tree | 1312f2c5798821dd8b4c583f30983542d9528790 /cpp/src/IceSSL/InstanceF.h | |
parent | Removed C# Ice.BatchRequestInterceptor (ICE-7662) (diff) | |
download | ice-c6f4057a8975e2312d82f22af59f2069d2b5e8ab.tar.bz2 ice-c6f4057a8975e2312d82f22af59f2069d2b5e8ab.tar.xz ice-c6f4057a8975e2312d82f22af59f2069d2b5e8ab.zip |
Fixed (ICE-7621) - Refactor IceSSL API to support multiple implementations
Diffstat (limited to 'cpp/src/IceSSL/InstanceF.h')
-rw-r--r-- | cpp/src/IceSSL/InstanceF.h | 8 |
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; } |