From 3bf9df6b2785fa6d951086978a3e66f49427166a Mon Sep 17 00:00:00 2001 From: FluorescentCIAAfricanAmerican <0934gj3049fk@protonmail.com> Date: Wed, 22 Apr 2020 12:56:21 -0400 Subject: 1 --- devtools/swigwin-1.3.34/Lib/java/std_vector.i | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 devtools/swigwin-1.3.34/Lib/java/std_vector.i (limited to 'devtools/swigwin-1.3.34/Lib/java/std_vector.i') diff --git a/devtools/swigwin-1.3.34/Lib/java/std_vector.i b/devtools/swigwin-1.3.34/Lib/java/std_vector.i new file mode 100644 index 0000000..92fa25a --- /dev/null +++ b/devtools/swigwin-1.3.34/Lib/java/std_vector.i @@ -0,0 +1,54 @@ +/* ----------------------------------------------------------------------------- + * See the LICENSE file for information on copyright, usage and redistribution + * of SWIG, and the README file for authors - http://www.swig.org/release.html. + * + * std_vector.i + * ----------------------------------------------------------------------------- */ + +%include + +%{ +#include +#include +%} + +namespace std { + + template class vector { + public: + typedef size_t size_type; + typedef T value_type; + typedef const value_type& const_reference; + vector(); + vector(size_type n); + size_type size() const; + size_type capacity() const; + void reserve(size_type n); + %rename(isEmpty) empty; + bool empty() const; + void clear(); + %rename(add) push_back; + void push_back(const value_type& x); + %extend { + const_reference get(int i) throw (std::out_of_range) { + int size = int(self->size()); + if (i>=0 && isize()); + if (i>=0 && i