git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
242 B
OpenEdge ABL
20 lines
242 B
OpenEdge ABL
%module lib_std_string
|
|
%include "std_string.i"
|
|
|
|
%inline %{
|
|
|
|
std::string test_value(std::string x) {
|
|
return x;
|
|
}
|
|
|
|
std::string *test_pointer(std::string *x) {
|
|
return x;
|
|
}
|
|
|
|
std::string test_reference(std::string &x) {
|
|
return x;
|
|
}
|
|
|
|
%}
|
|
|
|
|