PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Lib/std/std_wstring.i

#
Swig | 14 lines | 9 code | 4 blank | 1 comment | 0 complexity | e1647b919850f48af3fa26229b1c12db MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %include <wchar.i>
  2. %include <std/std_basic_string.i>
  3. /* wide strings */
  4. namespace std
  5. {
  6. %std_comp_methods(basic_string<wchar_t>);
  7. %naturalvar wstring;
  8. typedef basic_string<wchar_t> wstring;
  9. }
  10. %template(wstring) std::basic_string<wchar_t>;