*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5797 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2f4bf186cc
commit
f3e6672d8c
1 changed files with 30 additions and 0 deletions
|
|
@ -1,6 +1,36 @@
|
|||
Version 1.3.22 (in progress)
|
||||
==================================
|
||||
|
||||
03/21/2004: mmatus
|
||||
[Python] Makes the following 'var' cases more uniform:
|
||||
|
||||
std::string ga;
|
||||
|
||||
struct A {
|
||||
static std::string sa;
|
||||
std::string ma;
|
||||
};
|
||||
|
||||
|
||||
now the three variables (ga, sa, ma) can be assigned as:
|
||||
|
||||
|
||||
cvar.ga = "hello";
|
||||
A.sa = "hello";
|
||||
a.ma = "hello";
|
||||
|
||||
ie, now 'ma' will also use a std::string typemap 'in' if
|
||||
defined, before it was only accepting a 'p_std_string'
|
||||
pointer. Note, however, that 'ma' will not use the
|
||||
'varin/varout' typemaps (that probably could be more
|
||||
natural), but it will pick up the 'in' typemap for const
|
||||
std::string& (which is easier).
|
||||
|
||||
The changes in cwrap.c and lang.cxx will probably fix the
|
||||
behaviour in other languages that do not overload the
|
||||
membervarHandler method "too much".
|
||||
|
||||
|
||||
03/21/2004: mmatus
|
||||
[Python] Disabling the default instantiations like:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue