git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13482 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
No EOL
260 B
OpenEdge ABL
13 lines
No EOL
260 B
OpenEdge ABL
%module c_backend_cpp_natural_std_string
|
|
|
|
%feature ("nspace", "1");
|
|
|
|
%include std_string.i
|
|
|
|
%inline %{
|
|
static std::string& myStringAppend(std::string &someString, const std::string &appendedString)
|
|
{
|
|
someString += appendedString;
|
|
return someString;
|
|
}
|
|
%} |