From 7e1a4d39beddedef1a0c83bcbc50c8738f73413c Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 13 Oct 2006 23:49:34 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9449 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index 646d66553..603855a1d 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/CHANGES.current @@ -1,6 +1,15 @@ Version 1.3.30 (in progress) ============================ +10/13/2006: wsfulton + [C#, Java] Marginally better support for multiple inheritance only in that you can + control what the base class is. This is done using the new 'replace' attribute in the + javabase/csbase typemap, eg in the following, 'Me' will be the base class, + no matter what Foo is really derived from in the C++ layer. + + %typemap(javabase, replace="1") Foo "Me"; + %typemap(csbase, replace="1") Foo "Me"; + 10/12/2006: wsfulton [Java] Remove potential race condition on the proxy class' delete() method (it is now a synchronized method, but is now customisable by changing the