add local li_std_string test with %naturalvar applied to variables while the way to apply %naturalvar to std::string is sorted out
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8614 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
5f97905ab7
commit
9f0183d1c0
1 changed files with 92 additions and 0 deletions
92
SWIG/Examples/test-suite/chicken/li_std_string.i
Normal file
92
SWIG/Examples/test-suite/chicken/li_std_string.i
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
%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 = "test_reference_out message";
|
||||
return x;
|
||||
}
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(disable: 4290) // C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
|
||||
#endif
|
||||
|
||||
void test_throw() throw(std::string){
|
||||
static std::string x = "test_throw message";
|
||||
throw x;
|
||||
}
|
||||
|
||||
void test_const_reference_throw() throw(const std::string &){
|
||||
static std::string x = "test_const_reference_throw message";
|
||||
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");
|
||||
}
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(default: 4290) // C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
|
||||
#endif
|
||||
|
||||
%}
|
||||
|
||||
%naturalvar GlobalString2;
|
||||
%naturalvar Structure::MemberString2;
|
||||
%naturalvar Structure::StaticMemberString2;
|
||||
|
||||
%inline %{
|
||||
std::string GlobalString;
|
||||
std::string GlobalString2 = "global string 2";
|
||||
|
||||
struct Structure {
|
||||
std::string MemberString;
|
||||
std::string MemberString2;
|
||||
static std::string StaticMemberString;
|
||||
static std::string StaticMemberString2;
|
||||
|
||||
const std::string ConstMemberString;
|
||||
static const std::string ConstStaticMemberString;
|
||||
|
||||
Structure() : MemberString2("member string 2"), ConstMemberString("const member string") {}
|
||||
};
|
||||
%}
|
||||
|
||||
%{
|
||||
std::string Structure::StaticMemberString = "static member string";
|
||||
std::string Structure::StaticMemberString2 = "static member string 2";
|
||||
const std::string Structure::ConstStaticMemberString = "const static member string";
|
||||
%}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue