add/fix std_string test with %naturalvar
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8627 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
fd212896fd
commit
85dcc27edf
4 changed files with 50 additions and 165 deletions
|
|
@ -1,6 +1,6 @@
|
|||
%module li_std_string
|
||||
|
||||
%naturalvar;
|
||||
%naturalvar A;
|
||||
|
||||
|
||||
%include <std_basic_string.i>
|
||||
|
|
@ -36,54 +36,6 @@ const char* test_ccvalue(const char* x) {
|
|||
char* test_cvalue(char* x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
#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 = "x";
|
||||
|
||||
throw x;
|
||||
}
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(default: 4290) // C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
|
||||
#endif
|
||||
|
||||
|
||||
std::basic_string<char> test_value_basic1(std::basic_string<char> x) {
|
||||
return x;
|
||||
|
|
@ -99,34 +51,5 @@ std::basic_string<char,std::char_traits<char>,std::allocator<char> > test_value_
|
|||
|
||||
%}
|
||||
|
||||
/* Old way, now std::string is a %naturalvar by default
|
||||
%apply const std::string& { std::string *GlobalString2,
|
||||
std::string *MemberString2,
|
||||
std::string *Structure::StaticMemberString2 };
|
||||
*/
|
||||
|
||||
%inline %{
|
||||
std::string GlobalString;
|
||||
std::string GlobalString2 = "global string 2";
|
||||
const std::string ConstGlobalString = "const global string";
|
||||
|
||||
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";
|
||||
%}
|
||||
|
||||
%include ../li_std_string.i
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue