Add readme info for Java container wrappers
This commit is contained in:
parent
df899cfef1
commit
06c275935b
3 changed files with 18 additions and 0 deletions
|
|
@ -7,6 +7,11 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/
|
|||
Version 4.0.0 (in progress)
|
||||
===========================
|
||||
|
||||
2017-07-17: fflexo
|
||||
[Java] #674 Add std_list.i to add support for std::list containers. The Java proxy
|
||||
extends java.util.AbstractSequentialList and makes the C++ std::list container look
|
||||
and feel much like a java.util.LinkedList from Java.
|
||||
|
||||
2017-07-07: wsfulton
|
||||
[Python] Fix display of documented template types when using the autodoc
|
||||
feature. For example when wrapping:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
* std_list.i
|
||||
*
|
||||
* SWIG typemaps for std::list.
|
||||
* The Java proxy class extends java.util.AbstractSequentialList. The std::list
|
||||
* container looks and feels much like a java.util.LinkedList from Java.
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
||||
%include <std_common.i>
|
||||
|
||||
%{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
* std_vector.i
|
||||
*
|
||||
* SWIG typemaps for std::vector.
|
||||
* The Java proxy class extends java.util.AbstractList and implements
|
||||
* java.util.RandomAccess. The std::vector container looks and feels much like a
|
||||
* java.util.ArrayList from Java.
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
||||
%include <std_common.i>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue