1 #ifndef __PBIO_API__PBIO__STL_WRAPS_IMPLS__WRAP_VECTOR_IMPL_H_
2 #define __PBIO_API__PBIO__STL_WRAPS_IMPLS__WRAP_VECTOR_IMPL_H_
9 #include "pbio/stl_wraps/WrapVector.h"
17 void assign_pointers_vector_func(
18 void* pointers_vector,
19 void*
const* elements,
20 int32_t elements_count)
22 ((std::vector<void*>*) pointers_vector)->assign(elements, elements + elements_count);
26 void assign_floats_vector_func(
27 void* pointers_vector,
28 float const* elements,
29 int32_t elements_count)
31 ((std::vector<float>*) pointers_vector)->assign(elements, elements + elements_count);
39 #endif // __PBIO_API__PBIO__STL_WRAPS_IMPLS__WRAP_VECTOR_IMPL_H_