git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4478 626c5289-ae23-0410-ae9c-e8d60b6d4f22
40 lines
591 B
OpenEdge ABL
40 lines
591 B
OpenEdge ABL
%module lib_std_string
|
|
%include "std_string.i"
|
|
|
|
%inline %{
|
|
|
|
std::string test_value(std::string x) {
|
|
return x;
|
|
}
|
|
|
|
const std::string& test_const_reference(const std::string &x) {
|
|
return x;
|
|
}
|
|
|
|
void test_pointer(std::string *x) {
|
|
}
|
|
|
|
std::string *test_pointer_out() {
|
|
static std::string x = "x";
|
|
return &x;
|
|
}
|
|
|
|
void test_const_pointer(const std::string *x) {
|
|
}
|
|
|
|
const std::string *test_const_pointer_out() {
|
|
static std::string x = "x";
|
|
return &x;
|
|
}
|
|
|
|
void test_reference(std::string &x) {
|
|
}
|
|
|
|
std::string& test_reference_out() {
|
|
static std::string x = "x";
|
|
return x;
|
|
}
|
|
|
|
%}
|
|
|
|
|