Ice 3.7 C++11 API Reference
Loading...
Searching...
No Matches
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
11namespace IceInternal
12{
13
14class CancellationHandler;
15class RequestHandler;
16
17#ifdef ICE_CPP11_MAPPING
18using CancellationHandlerPtr = ::std::shared_ptr<CancellationHandler>;
19using RequestHandlerPtr = ::std::shared_ptr<RequestHandler>;
20#else
21ICE_API IceUtil::Shared* upCast(CancellationHandler*);
22typedef IceInternal::Handle<CancellationHandler> CancellationHandlerPtr;
23
24ICE_API IceUtil::Shared* upCast(RequestHandler*);
25typedef IceInternal::Handle<RequestHandler> RequestHandlerPtr;
26#endif
27
28}
29
30#endif
#define ICE_API
Definition Config.h:197