git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6357 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
300 B
OpenEdge ABL
12 lines
300 B
OpenEdge ABL
/* 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;
|