1 /* This file tests the clientdata propagation at swig wrapper
2    generation.  It tests a bug in the TCL module where the
3    clientdata was not propagated correctly to all classes */
4 
5 %module clientdata_prop_b
6 
7 %{
8 #include "clientdata_prop_b.h"
9 %}
10 
11 %import "clientdata_prop_a.i"
12 
13 %include "clientdata_prop_b.h"
14 
15 %types(tA *);
16 
17 %newobject new_t2A;
18 %newobject new_t3A;
19 %newobject new_tD;
20 %newobject new_t2D;
21