blob: d2b16581c7863f597b9c3ab82189849ef35b60b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICESSL_UWP_ENGINE_F_H
#define ICESSL_UWP_ENGINE_F_H
#include <IceUtil/Shared.h>
#include <Ice/Handle.h>
#include <IceSSL/UWP.h>
namespace IceSSL
{
namespace UWP
{
class SSLEngine;
ICESSL_API IceUtil::Shared* upCast(SSLEngine*);
typedef IceInternal::Handle<SSLEngine> SSLEnginePtr;
}
}
#endif
|