git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11874 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
511 B
OpenEdge ABL
20 lines
511 B
OpenEdge ABL
/* -----------------------------------------------------------------------------
|
|
* std_common.i
|
|
*
|
|
* SWIG typemaps for STL - common utilities
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
%include <std/std_except.i>
|
|
|
|
%apply size_t { std::size_t };
|
|
|
|
%{
|
|
#include <string>
|
|
|
|
std::string swig_scm_to_string(Scheme_Object* x) {
|
|
return std::string(SCHEME_STR_VAL(x));
|
|
}
|
|
Scheme_Object* swig_make_string(const std::string& s) {
|
|
return scheme_make_string(s.c_str());
|
|
}
|
|
%}
|