Ice 3.7 C++98 API Reference
Loading...
Searching...
No Matches
SlicedDataF.h
Go to the documentation of this file.
1//
2// Copyright (c) ZeroC, Inc. All rights reserved.
3//
4
5#ifndef ICE_SLICED_DATA_F_H
6#define ICE_SLICED_DATA_F_H
7
8#include <IceUtil/Shared.h>
9#include <Ice/Handle.h>
10
11namespace Ice
12{
13
14struct SliceInfo;
15class SlicedData;
17
18#ifdef ICE_CPP11_MAPPING
20using SliceInfoPtr = ::std::shared_ptr<SliceInfo>;
21using SlicedDataPtr = ::std::shared_ptr<SlicedData>;
22using UnknownSlicedValuePtr = ::std::shared_ptr<UnknownSlicedValue>;
24#else
26typedef IceInternal::Handle<SliceInfo> SliceInfoPtr;
27
29typedef IceInternal::Handle<SlicedData> SlicedDataPtr;
30
32typedef IceInternal::Handle<UnknownSlicedValue> UnknownSlicedValuePtr;
33#endif
34
36typedef ::std::vector<SliceInfoPtr> SliceInfoSeq;
37
38}
39
40#endif
#define ICE_API
Definition Config.h:197
Definition Shared.h:78
Holds the slices of unknown types.
Definition SlicedData.h:63
Represents an instance of an unknown type.
Definition SlicedData.h:98
Definition BuiltinSequences.h:113
IceInternal::Handle< SlicedData > SlicedDataPtr
Definition SlicedDataF.h:29
IceInternal::Handle< UnknownSlicedValue > UnknownSlicedValuePtr
Definition SlicedDataF.h:32
::std::vector< SliceInfoPtr > SliceInfoSeq
The slices of unknown types.
Definition SlicedDataF.h:36
IceInternal::Handle< SliceInfo > SliceInfoPtr
Definition SlicedDataF.h:26
IceUtil::Shared * upCast(::Ice::AsyncResult *)
Encapsulates the details of a slice for an unknown class or exception type.
Definition SlicedData.h:23