blob: 626f2a1b83dbae372610ab087b6182e17565f0a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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_a
%{
#include "clientdata_prop_a.h"
%}
%include "clientdata_prop_a.h"
%newobject new_tA;
|