mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-27 00:26:50 +00:00
15 lines
249 B
OpenEdge ABL
15 lines
249 B
OpenEdge ABL
|
%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>;
|
||
|
|