Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
import_stl_b.i
blob: 9b732091625798f7886e73958ae93248eb30aa2f [
file
] [
log
] [
blame
]
%
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
;
}
%}