swig/Examples/test-suite/lib_std_string.i
2004-07-23 21:51:42 +00:00

52 lines
785 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;
}
void test_throw() throw(std::string){
static std::string x = "x";
throw x;
}
void test_const_reference_throw() throw(const std::string &){
static std::string x = "x";
throw x;
}
%}