diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index d693487ad..aebac3b86 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/CHANGES.current @@ -1,5 +1,25 @@ Version 1.3.28 (unreleased). =========================== + +11/26/2005: wsfulton + SWIG library files use system angle brackets everywhere for %include, eg + %include "std_common.i" + becomes + %include + +11/26/2005: wsfulton + [Java, C#] + Typesafe enums and proper enums have an extra constructor so that enum item values that + are initialised by another enum item value can be wrapped without having to use %javaconstvalue/ + %csconstvalue for when using %javaconst(1)/%csconst(1). Suggestion by Bob Marinier. + For example: + + typedef enum + { + xyz, + last = xyz + } repeat; + 11/21/2005: mmatus [ruby + python]