// ********************************************************************** // // Copyright (c) 2003-2014 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_DEPRECATED_STRING_CONVERTER_H #define ICE_DEPRECATED_STRING_CONVERTER_H #include #include #include namespace Ice { typedef IceUtil::StringConverterPtr StringConverterPtr; typedef IceUtil::WstringConverterPtr WstringConverterPtr; ICE_DEPRECATED_API("is deprecated, use IceUtil::nativeToUTF8(const std::string&, const StringConverterPtr&) instead") std::string nativeToUTF8(const StringConverterPtr&, const std::string&); ICE_DEPRECATED_API("is deprecated, use IceUtil::nativeToUTF8(const std::string&, const StringConverterPtr&) instead") std::string nativeToUTF8(const CommunicatorPtr&, const std::string&); ICE_DEPRECATED_API("is deprecated, use IceUtil::UTF8ToNative(const std::string&, const StringConverterPtr&) instead") std::string UTF8toNative(const StringConverterPtr&, const std::string&); ICE_DEPRECATED_API("is deprecated, use IceUtil::UTF8ToNative(const std::string&, const StringConverterPtr&) instead") std::string UTF8ToNative(const CommunicatorPtr&, const std::string&); } #endif