diff options
Diffstat (limited to 'cpp/src/IceSSL/uwp/TransceiverF.h')
-rw-r--r-- | cpp/src/IceSSL/uwp/TransceiverF.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/uwp/TransceiverF.h b/cpp/src/IceSSL/uwp/TransceiverF.h new file mode 100644 index 00000000000..5384607f1a9 --- /dev/null +++ b/cpp/src/IceSSL/uwp/TransceiverF.h @@ -0,0 +1,31 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef ICE_UWP_TRANSCEIVER_F_H +#define ICE_UWP_TRANSCEIVER_F_H + +#include <IceUtil/Shared.h> +#include <Ice/Handle.h> + +namespace IceSSL +{ + +class EndpointI; +#ifndef ICE_CPP11_MAPPING +ICE_API IceUtil::Shared* upCast(EndpointI*); +#endif +ICE_DEFINE_PTR(EndpointIPtr, EndpointI); + +class AcceptorI; +ICE_API IceUtil::Shared* upCast(AcceptorI*); +typedef IceInternal::Handle<AcceptorI> AcceptorIPtr; + +} + +#endif |