allow to use iostream and sstream without wchar support, as pointed by Scott

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7138 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-04-02 19:06:31 +00:00
commit d1bec74c9c
4 changed files with 27 additions and 7 deletions

View file

@ -1,7 +1,21 @@
#ifdef __cplusplus
%{
#include <cwchar>
%}
#else
%{
#include <wchar.h>
%}
%types(wchar_t *);
#endif
%types(wchar_t *);
%include <pywstrings.swg>
/*
Enable swig wchar support.
*/
#define SWIG_WCHAR