summaryrefslogtreecommitdiff
path: root/Lib/std/std_wstring.i
blob: e54d21200e4924549f06c7189b34b6fc3bcc938e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%include <wchar.i>
%include <std/std_basic_string.i>

/* wide strings */

namespace std
{
  %std_comp_methods(basic_string<wchar_t>);
  %naturalvar wstring;
  typedef basic_string<wchar_t> wstring;
}

%template(wstring) std::basic_string<wchar_t>;