// ********************************************************************** // // Copyright (c) 2003-2015 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 UnknownSlicedObject; #ifdef ICE_CPP11_MAPPING typedef ::std::shared_ptr SliceInfoPtr; typedef ::std::shared_ptr SlicedDataPtr; typedef ::std::shared_ptr UnknownSlicedObjectPtr; #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(UnknownSlicedObject*); typedef IceInternal::Handle UnknownSlicedObjectPtr; #endif typedef ::std::vector SliceInfoSeq; } #endif