This reverts commit c595e4d90ebfd63eb55430c735bb121cf690bd59. Conflicts: Source/Modules/c.cxx From: William S Fulton <wsf@fultondesigns.co.uk> git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@13033 626c5289-ae23-0410-ae9c-e8d60b6d4f22
55 lines
853 B
OpenEdge ABL
55 lines
853 B
OpenEdge ABL
%module li_std_string_extra
|
|
|
|
%naturalvar A;
|
|
|
|
|
|
%include <std_basic_string.i>
|
|
%include <std_string.i>
|
|
|
|
|
|
%inline %{
|
|
|
|
struct A : std::string
|
|
{
|
|
A(const std::string& s) : std::string(s)
|
|
{
|
|
}
|
|
};
|
|
|
|
struct B
|
|
{
|
|
B(const std::string& s) : cname(0), name(s), a(s)
|
|
{
|
|
}
|
|
|
|
char *cname;
|
|
std::string name;
|
|
A a;
|
|
|
|
};
|
|
|
|
|
|
const char* test_ccvalue(const char* x) {
|
|
return x;
|
|
}
|
|
|
|
char* test_cvalue(char* x) {
|
|
return x;
|
|
}
|
|
|
|
std::basic_string<char> test_value_basic1(std::basic_string<char> x) {
|
|
return x;
|
|
}
|
|
|
|
std::basic_string<char,std::char_traits<char> > test_value_basic2(std::basic_string<char,std::char_traits<char> > x) {
|
|
return x;
|
|
}
|
|
|
|
std::basic_string<char,std::char_traits<char>,std::allocator<char> > test_value_basic3(std::basic_string<char,std::char_traits<char>,std::allocator<char> > x) {
|
|
return x;
|
|
}
|
|
|
|
%}
|
|
|
|
%include "li_std_string.i"
|
|
|