summaryrefslogtreecommitdiff
path: root/Lib/python/std_string.i
blob: 2c5fcf31b75b4ff657c814465f7c317f529b1aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// std::string
//

#ifndef SWIG_STD_BASIC_STRING
#define SWIG_STD_STRING

%{
#include <string>
%}

namespace std
{
  class string;
}
  
%include <typemaps/std_string.swg>
%include <pystrings.swg>

%std_string_asptr(std::string, char, SWIG_AsCharPtrAndSize)
%std_string_from(std::string,  SWIG_FromCharPtrAndSize)
%std_string_asval(std::string)

%typemap_asptrfromn(SWIG_CCode(STRING), std::string);

#else

%include <std/std_string.i>

#endif