swig/Examples/test-suite/li_std_string.i
William S Fulton a8d7e1540f new name mods
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6592 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-11-01 22:57:56 +00:00

58 lines
958 B
OpenEdge ABL

%module li_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;
}
void test_pointer_throw() throw(std::string *) {
throw new std::string("foo");
}
void test_const_pointer_throw() throw(const std::string *) {
throw new std::string("foo");
}
%}