Ice 3.7 C++11 API Reference
OutgoingAsyncF.h
Go to the documentation of this file.
1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 #ifndef ICE_OUTGOING_ASYNC_F_H
6 #define ICE_OUTGOING_ASYNC_F_H
7 
8 #include <IceUtil/Shared.h>
9 #include <Ice/Handle.h>
10 
11 namespace IceInternal
12 {
13 
14 class OutgoingAsyncBase;
15 class OutgoingAsync;
16 class ProxyOutgoingAsyncBase;
17 class CommunicatorFlushBatchAsync;
18 
19 #ifdef ICE_CPP11_MAPPING
20 using OutgoingAsyncBasePtr = ::std::shared_ptr<OutgoingAsyncBase>;
21 using OutgoingAsyncPtr = ::std::shared_ptr<OutgoingAsync>;
22 using ProxyOutgoingAsyncBasePtr = ::std::shared_ptr<ProxyOutgoingAsyncBase>;
23 using CommunicatorFlushBatchAsyncPtr = ::std::shared_ptr<CommunicatorFlushBatchAsync>;
24 #else
25 ICE_API IceUtil::Shared* upCast(OutgoingAsyncBase*);
26 typedef IceInternal::Handle<OutgoingAsyncBase> OutgoingAsyncBasePtr;
27 
28 ICE_API IceUtil::Shared* upCast(OutgoingAsync*);
29 typedef IceInternal::Handle<OutgoingAsync> OutgoingAsyncPtr;
30 
31 ICE_API IceUtil::Shared* upCast(ProxyOutgoingAsyncBase*);
32 typedef IceInternal::Handle<ProxyOutgoingAsyncBase> ProxyOutgoingAsyncBasePtr;
33 
34 ICE_API IceUtil::Shared* upCast(CommunicatorFlushBatchAsync*);
35 typedef IceInternal::Handle<CommunicatorFlushBatchAsync> CommunicatorFlushBatchAsyncPtr;
36 #endif
37 }
38 
39 #endif
Handle.h
ICE_API
#define ICE_API
Definition: Config.h:197
Shared.h
IceUtil::Shared
Definition: Shared.h:78