diff options
Diffstat (limited to 'cpp/include/Ice/ConsoleUtil.h')
-rw-r--r-- | cpp/include/Ice/ConsoleUtil.h | 28 |
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 |