Ice 3.7 C++11 API Reference
RequestHandlerF.h
Go to the documentation of this file.
1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 #ifndef ICE_REQUEST_HANDLER_F_H
6 #define ICE_REQUEST_HANDLER_F_H
7 
8 #include <IceUtil/Shared.h>
9 #include <Ice/Handle.h>
10 
11 namespace IceInternal
12 {
13 
14 class CancellationHandler;
15 class RequestHandler;
16 
17 #ifdef ICE_CPP11_MAPPING
18 using CancellationHandlerPtr = ::std::shared_ptr<CancellationHandler>;
19 using RequestHandlerPtr = ::std::shared_ptr<RequestHandler>;
20 #else
21 ICE_API IceUtil::Shared* upCast(CancellationHandler*);
22 typedef IceInternal::Handle<CancellationHandler> CancellationHandlerPtr;
23 
24 ICE_API IceUtil::Shared* upCast(RequestHandler*);
25 typedef IceInternal::Handle<RequestHandler> RequestHandlerPtr;
26 #endif
27 
28 }
29 
30 #endif
Handle.h
ICE_API
#define ICE_API
Definition: Config.h:197
Shared.h
IceUtil::Shared
Definition: Shared.h:78