summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/ConsoleUtil.h
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-01-09 17:01:31 +0100
committerJose <jose@zeroc.com>2017-01-09 17:01:31 +0100
commitd4ed7973f1824478477be29989fc125b04207494 (patch)
treeec488f46a0ee15f987a0a24c87d1fe0a999cc168 /cpp/include/Ice/ConsoleUtil.h
parentIceSSL C#/Java test fixes to sync with C++ changes (diff)
downloadice-d4ed7973f1824478477be29989fc125b04207494.tar.bz2
ice-d4ed7973f1824478477be29989fc125b04207494.tar.xz
ice-d4ed7973f1824478477be29989fc125b04207494.zip
Fixed (ICE-6694) - Unicode output in command line tools
Diffstat (limited to 'cpp/include/Ice/ConsoleUtil.h')
-rw-r--r--cpp/include/Ice/ConsoleUtil.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp/include/Ice/ConsoleUtil.h b/cpp/include/Ice/ConsoleUtil.h
new file mode 100644
index 00000000000..10a6d3827a5
--- /dev/null
+++ b/cpp/include/Ice/ConsoleUtil.h
@@ -0,0 +1,28 @@
+// **********************************************************************
+//
+// 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_CONSOLE_UTIL_H
+#define ICE_CONSOLE_UTIL_H
+
+#include <IceUtil/ConsoleUtil.h>
+
+namespace IceInternal
+{
+
+using IceUtilInternal::consoleOut;
+using IceUtilInternal::consoleErr;
+
+#if defined(_WIN32) && !defined(ICE_OS_UWP)
+using IceUtilInternal::endl;
+using IceUtilInternal::flush;
+#endif
+
+}
+
+#endif