Fix a few bugs in the tcl module related to clientdata propagation.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6357 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
0df018da0d
commit
143bfb2a62
16 changed files with 257 additions and 63 deletions
12
Examples/test-suite/clientdata_prop_a.h
Normal file
12
Examples/test-suite/clientdata_prop_a.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
class A {
|
||||
public:
|
||||
void fA() {}
|
||||
};
|
||||
|
||||
typedef A tA;
|
||||
|
||||
void test_A(A *a) {}
|
||||
void test_tA(tA *a) {}
|
||||
|
||||
tA *new_tA() { return new tA(); }
|
||||
Loading…
Add table
Add a link
Reference in a new issue