From bfedd4e1da9c30a8c735fa041182c1922b4dbafc Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 26 Nov 2005 09:33:07 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7872 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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]