diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-05-02 19:10:56 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-05-02 19:10:56 +0000 |
commit | 643bb663b019016db089777143d6ba7e8a4ff0ea (patch) | |
tree | 95aecc5b75c658ae0c8abc287434f604b9eb1bd8 /cppe/src/IceE/Unicode.cpp | |
parent | MAke wstring optional for IceE (diff) | |
download | ice-643bb663b019016db089777143d6ba7e8a4ff0ea.tar.bz2 ice-643bb663b019016db089777143d6ba7e8a4ff0ea.tar.xz ice-643bb663b019016db089777143d6ba7e8a4ff0ea.zip |
Make Wstring optional for IceE
Diffstat (limited to 'cppe/src/IceE/Unicode.cpp')
-rw-r--r-- | cppe/src/IceE/Unicode.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cppe/src/IceE/Unicode.cpp b/cppe/src/IceE/Unicode.cpp index b65d53840d3..ec560309a2a 100644 --- a/cppe/src/IceE/Unicode.cpp +++ b/cppe/src/IceE/Unicode.cpp @@ -7,6 +7,10 @@ // // ********************************************************************** +#include <IceE/Config.h> + +#ifdef ICEE_HAS_WSTRING + #include <IceE/Unicode.h> #include <IceE/ConvertUTF.h> @@ -268,3 +272,5 @@ IceUtil::stringToTypedefWstring(const string& str) # endif #endif + +#endif |