*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4477 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8cd6b71d0c
commit
56e34f6d39
2 changed files with 44 additions and 3 deletions
|
|
@ -3,15 +3,23 @@
|
|||
|
||||
%inline %{
|
||||
|
||||
std::string test_value(std::string x) {
|
||||
std::string test_value_in(std::string x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
std::string *test_pointer(std::string *x) {
|
||||
std::string *test_pointer_in(std::string *x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
std::string test_reference(std::string &x) {
|
||||
const std::string *test_const_pointer_in(const std::string *x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
std::string test_reference_in(std::string &x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
std::string test_const_reference_in(const std::string &x) {
|
||||
return x;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue