summaryrefslogtreecommitdiff
path: root/Examples/test-suite/clientdata_prop_b.i
blob: 709c1a28d4bc2ff67cdf2136c60d3a1c6a371368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* This file tests the clientdata propagation at swig wrapper
   generation.  It tests a bug in the TCL module where the
   clientdata was not propagated correctly to all classes */

%module clientdata_prop_b

%{
#include "clientdata_prop_b.h"
%}

%import "clientdata_prop_a.i"

%include "clientdata_prop_b.h"

%types(tA *);

%newobject new_t2A;
%newobject new_t3A;
%newobject new_tD;
%newobject new_t2D;