swig/Examples/test-suite/enum_template.i
2004-10-06 08:26:58 +00:00

39 lines
587 B
OpenEdge ABL

%module enum_template
/*
From bug report 992329:
In Python I see
>>> import enum_template
>>> enum_template.MakeETest()
'_60561408_p_ETest'
>>> enum_template.TakeETest(0)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: Expected a pointer
Without the %template, things work fine: the first
function call returns an integer, and the second
succeeds.
*/
%inline %{
enum ETest
{
eTest0,
eTest1,
eTest2
};
void TakeETest(ETest test) {};
ETest MakeETest(void) {return eTest1;};
template<class T> class CTempl
{
};
%}
%template(CTempl_ETest) CTempl<ETest>;