summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/StringUtil.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-10-20 21:03:44 -0400
committerBernard Normier <bernard@zeroc.com>2016-10-20 21:03:44 -0400
commit3cb9c15995b828c52dba34d0a222f572d5bbc41b (patch)
tree87bad249c2ee04972be5f3c7635880cb0c556128 /cpp/src/Ice/StringUtil.h
parentupdating IceBT to BlueZ 5 (diff)
downloadice-3cb9c15995b828c52dba34d0a222f572d5bbc41b.tar.bz2
ice-3cb9c15995b828c52dba34d0a222f572d5bbc41b.tar.xz
ice-3cb9c15995b828c52dba34d0a222f572d5bbc41b.zip
Added support for non-ASCII characters and universal character names
to stringified identities and proxies. This includes a new Ice.ToStringMode property.
Diffstat (limited to 'cpp/src/Ice/StringUtil.h')
-rw-r--r--cpp/src/Ice/StringUtil.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/cpp/src/Ice/StringUtil.h b/cpp/src/Ice/StringUtil.h
new file mode 100644
index 00000000000..70dab65bf88
--- /dev/null
+++ b/cpp/src/Ice/StringUtil.h
@@ -0,0 +1,35 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2016 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_STRING_UTIL_H
+#define ICE_STRING_UTIL_H
+
+#include <Ice/Initialize.h>
+#include <IceUtil/StringUtil.h>
+
+namespace IceInternal
+{
+
+//
+// Adapter for ToStringMode
+//
+inline std::string
+escapeString(const std::string& s, const std::string& special, Ice::ToStringMode mode)
+{
+ return IceUtilInternal::escapeString(s, special, static_cast<IceUtilInternal::ToStringMode>(mode));
+}
+
+//
+// Provided for consistency with escapeString
+//
+using IceUtilInternal::unescapeString;
+
+}
+
+#endif