summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/DeprecatedStringConverter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/DeprecatedStringConverter.cpp')
-rw-r--r--cpp/src/Ice/DeprecatedStringConverter.cpp62
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 ba6ad9413e5..00000000000
--- a/cpp/src/Ice/DeprecatedStringConverter.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-#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());
-}
-
-}