// ********************************************************************** // // Copyright (c) 2003-2017 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_SLICED_DATA_F_H #define ICE_SLICED_DATA_F_H #include #include namespace Ice { struct SliceInfo; class SlicedData; class UnknownSlicedValue; #ifdef ICE_CPP11_MAPPING using SliceInfoPtr = ::std::shared_ptr; using SlicedDataPtr = ::std::shared_ptr; using UnknownSlicedValuePtr = ::std::shared_ptr; #else ICE_API IceUtil::Shared* upCast(SliceInfo*); typedef IceInternal::Handle SliceInfoPtr; ICE_API IceUtil::Shared* upCast(SlicedData*); typedef IceInternal::Handle SlicedDataPtr; ICE_API IceUtil::Shared* upCast(UnknownSlicedValue*); typedef IceInternal::Handle UnknownSlicedValuePtr; #endif typedef ::std::vector SliceInfoSeq; } #endif