diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-10 14:26:31 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-10 14:26:31 +0000 |
commit | beb5efc86102085713d73a3733b2fc8bf7c4995f (patch) | |
tree | 8fe7c22eff6b4a8dc379b0155aadfd9685373051 /cpp/include/IceUtil/Unicode.h | |
parent | scoping fixes (diff) | |
download | ice-beb5efc86102085713d73a3733b2fc8bf7c4995f.tar.bz2 ice-beb5efc86102085713d73a3733b2fc8bf7c4995f.tar.xz ice-beb5efc86102085713d73a3733b2fc8bf7c4995f.zip |
fixes
Diffstat (limited to 'cpp/include/IceUtil/Unicode.h')
-rw-r--r-- | cpp/include/IceUtil/Unicode.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/Unicode.h b/cpp/include/IceUtil/Unicode.h new file mode 100644 index 00000000000..fb1f800d6b9 --- /dev/null +++ b/cpp/include/IceUtil/Unicode.h @@ -0,0 +1,24 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_UTIL_UNICODE_H +#define ICE_UTIL_UNICODE_H + +#include <IceUtil/Config.h> + +namespace IceUtil +{ + +std::string wstringToString(const std::wstring&); +std::wstring stringToWstring(const std::string&); + +} + +#endif |