changed -fdirectors option to %module option
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4445 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
375592a285
commit
47710c7dda
6 changed files with 149 additions and 84 deletions
|
|
@ -1,5 +1,12 @@
|
|||
Version 1.3.18 (In progress)
|
||||
============================
|
||||
03/06/2003: mrose (Mark Rose)
|
||||
The short-lived "-fdirectors" command line option has been
|
||||
removed. To enable directors, instead use the extended %module
|
||||
directive as follows:
|
||||
|
||||
%module(directors="1") modulename
|
||||
|
||||
03/06/2003: cheetah (William Fulton)
|
||||
The long long typemaps have been rewritten so that they can be more
|
||||
easily used with non ISO compilers, like Visual C++. For example
|
||||
|
|
@ -44,12 +51,12 @@ Version 1.3.18 (In progress)
|
|||
|
||||
03/06/2003: mrose (Mark Rose)
|
||||
Merged the cross-language polymorphism patch. When enabled, C++
|
||||
"proxy" classes (called directors) for each specified C++ class.
|
||||
Directors pass method calls from C++ to Python, similar to the way
|
||||
the usual proxy (shadow) classes pass method calls from Python to
|
||||
C++. Together, these two types of proxies allow C++ classes that
|
||||
are extended in Python to behave just like ordinary C++ classes and
|
||||
be used in C++ like native objects.
|
||||
"proxy" classes (called directors) are generated for each specified
|
||||
C++ class. Directors pass method calls from C++ to Python, similar
|
||||
to the way the usual proxy (shadow) classes pass method calls from
|
||||
Python to C++. Together, these two types of proxies allow C++
|
||||
classes that are extended in Python to behave just like ordinary
|
||||
C++ classes and be used in C++ like native objects.
|
||||
|
||||
This feature is still very experimental and is disabled by default.
|
||||
To enable director support, specify '-fdirectors' on the SWIG command
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue