From 9fd6e6ebfdba34caccd16c1a3bfb2c4e615da580 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Sun, 11 Apr 2004 08:13:07 +0000 Subject: [PATCH] add -directors git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5872 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index 5aa687d9b..550f2860b 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/CHANGES.current @@ -1,6 +1,24 @@ Version 1.3.22 (in progress) ================================== +04/10/2004: mmatus (Marcelo Matus) + + Added the -directors flag. This enables the director + mode for the interface and all the classes that + don't set the "feature:nodirector" explicitly. + + You can use this in your module if you want to use the + director feature in all your classes, but it is most + intended for testing purposes, like: + + make check-python-test-suite SWIG="../../../swig -directors" + make check-ruby-test-suite SWIG="../../../swig -directors" + make check-java-test-suite SWIG="../../../../swig -directors" + + These commands will run the entire test-suite using + directors, and not only the specific 'directors_*' + cases. This should be done from time to time. + 04/10/2004: mmatus (Marcelo Matus) [python] Added support for std::wstring and wchar_t,