mirror of
https://github.com/eclipse/upm.git
synced 2025-07-02 01:41:12 +03:00
java: removed unnecessary generated wrapper objects for std::vector
Signed-off-by: Bogdan Ichim <bogdan.ichim@rinftech.com> Signed-off-by: Stefan Andritoiu <stefan.andritoiu@gmail.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:

committed by
Mihai Tudor Panu

parent
dc03eec56f
commit
65726087bc
@ -2,7 +2,8 @@
|
||||
%include "../upm.i"
|
||||
%include "cpointer.i"
|
||||
%include "typemaps.i"
|
||||
%include "../upm_vectortypes.i"
|
||||
%include "std_vector.i"
|
||||
%include "stdint.i"
|
||||
|
||||
%ignore getCalibrationStatus(int *, int *, int *, int *);
|
||||
%ignore getAccelerometer(float *, float *, float *);
|
||||
@ -13,6 +14,10 @@
|
||||
%ignore getLinearAcceleration(float *, float *, float *);
|
||||
%ignore getGravityVectors(float *, float *, float *);
|
||||
|
||||
%template(floatVector) std::vector<float>;
|
||||
%template(byteVector) std::vector<uint8_t>;
|
||||
%template(intVector) std::vector<int>;
|
||||
|
||||
%include "bno055_regs.h"
|
||||
%include "bno055.hpp"
|
||||
%{
|
||||
|
Reference in New Issue
Block a user