diff options
author | Mark Spruiell <mes@zeroc.com> | 2013-04-04 16:02:42 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2013-04-04 16:02:42 -0700 |
commit | 9cb665138c7d2422739e32b40a249c64fd3b6cd5 (patch) | |
tree | 94759d916599ca08761b98580185a230744ac67a /cpp/src/Ice/NetworkF.h | |
parent | x64 VC10 icexml35d.dll was linked to wrong file (diff) | |
download | ice-9cb665138c7d2422739e32b40a249c64fd3b6cd5.tar.bz2 ice-9cb665138c7d2422739e32b40a249c64fd3b6cd5.tar.xz ice-9cb665138c7d2422739e32b40a249c64fd3b6cd5.zip |
* SOCKS support for C++
* Minor cleanup in C#
* Unity fixes
Diffstat (limited to 'cpp/src/Ice/NetworkF.h')
-rw-r--r-- | cpp/src/Ice/NetworkF.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/src/Ice/NetworkF.h b/cpp/src/Ice/NetworkF.h new file mode 100644 index 00000000000..4b8cb2d4921 --- /dev/null +++ b/cpp/src/Ice/NetworkF.h @@ -0,0 +1,30 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2013 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_NETWORK_F_H +#define ICE_NETWORK_F_H + +#include <IceUtil/Shared.h> + +#include <Ice/Handle.h> + +namespace IceInternal +{ + +class NetworkProxy; +ICE_API IceUtil::Shared* upCast(NetworkProxy*); +typedef Handle<NetworkProxy> NetworkProxyPtr; + +class SOCKSNetworkProxy; +ICE_API IceUtil::Shared* upCast(SOCKSNetworkProxy*); +typedef Handle<SOCKSNetworkProxy> SOCKSNetworkProxyPtr; + +} + +#endif |