diff options
author | Jose <jose@zeroc.com> | 2016-01-15 10:17:52 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-15 10:17:52 +0100 |
commit | 614afdcc3bac352a054907d61d7f127c767e39b7 (patch) | |
tree | 6ae9ae8cf081fd53a3c6d0db0d37cc7ed2781190 /cpp/src/Ice/DeprecatedStringConverter.cpp | |
parent | ICE-6821 getSystemErrno should not be inlined (diff) | |
download | ice-614afdcc3bac352a054907d61d7f127c767e39b7.tar.bz2 ice-614afdcc3bac352a054907d61d7f127c767e39b7.tar.xz ice-614afdcc3bac352a054907d61d7f127c767e39b7.zip |
Remove deprecated string converter plug-in
Diffstat (limited to 'cpp/src/Ice/DeprecatedStringConverter.cpp')
-rw-r--r-- | cpp/src/Ice/DeprecatedStringConverter.cpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/cpp/src/Ice/DeprecatedStringConverter.cpp b/cpp/src/Ice/DeprecatedStringConverter.cpp deleted file mode 100644 index 4be29815a35..00000000000 --- a/cpp/src/Ice/DeprecatedStringConverter.cpp +++ /dev/null @@ -1,62 +0,0 @@ -// ********************************************************************** -// -// 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. -// -// ********************************************************************** - -#include <IceUtil/DisableWarnings.h> -#include <Ice/DeprecatedStringConverter.h> - -#include <Ice/Initialize.h> -#include <Ice/Instance.h> -#include <IceUtil/StringConverter.h> - -namespace Ice -{ - -StringConverterPlugin::StringConverterPlugin(const CommunicatorPtr& /*notused*/, - const StringConverterPtr& stringConverter, - const WstringConverterPtr& wstringConverter) -{ - IceUtil::setProcessStringConverter(stringConverter); - IceUtil::setProcessWstringConverter(wstringConverter); -} - -void StringConverterPlugin::initialize() -{ - // no op -} - -void StringConverterPlugin::destroy() -{ - // no op -} - -std::string -nativeToUTF8(const StringConverterPtr& converter, const std::string& s) -{ - return IceUtil::nativeToUTF8(s, converter); -} - -std::string -nativeToUTF8(const CommunicatorPtr& communicator, const std::string& s) -{ - return IceUtil::nativeToUTF8(s, IceInternal::getInstance(communicator)->getStringConverter()); -} - -std::string -UTF8toNative(const StringConverterPtr& converter, const std::string& s) -{ - return IceUtil::UTF8ToNative(s, converter); -} - -std::string -UTF8ToNative(const CommunicatorPtr& communicator, const std::string& s) -{ - return IceUtil::UTF8ToNative(s, IceInternal::getInstance(communicator)->getStringConverter()); -} - -} |