/* ----------------------------------------------------------------------------- * 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_list.i * ----------------------------------------------------------------------------- */ %include %{ #include #include %} namespace std { template class list { public: typedef size_t size_type; typedef T value_type; typedef const value_type& const_reference; list(); size_type size() const; %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()); int j; if (i>=0 && i::const_iterator p; p=self->begin(); for (j=0; j