new tests for string and directors+containers
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5772 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
a672ff61ef
commit
c8d7e4d971
4 changed files with 189 additions and 0 deletions
57
SWIG/Examples/test-suite/python/lib_std_string.i
Normal file
57
SWIG/Examples/test-suite/python/lib_std_string.i
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
%module lib_std_string
|
||||
%include "std_string.i"
|
||||
|
||||
%template(string) std::basic_string<char>;
|
||||
%inline %{
|
||||
|
||||
struct A : std::string
|
||||
{
|
||||
A(const std::string& s) : std::string(s)
|
||||
{
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
%}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue