diff options
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 |