git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12633 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
212 B
OpenEdge ABL
13 lines
212 B
OpenEdge ABL
%module import_stl_b
|
|
|
|
%import "import_stl_a.i"
|
|
|
|
%inline %{
|
|
#include <vector>
|
|
std::vector<int> process_vector(const std::vector<int>& v) {
|
|
std::vector<int> v_new = v;
|
|
v_new.push_back(4);
|
|
return v_new;
|
|
}
|
|
%}
|
|
|