Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/enum_scope_template.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

21 lines
389 B
OpenEdge ABL

%module enum_scope_template
#ifdef SWIGPHP
// php internal naming conflict
%rename (chops) chop;
#endif
%inline %{
template<class T> class Tree {
public:
enum types {Oak, Fir, Cedar};
void chop(enum types type) {}
};
enum Tree<int>::types chop(enum Tree<int>::types type) { return type; }
%}
%template(TreeInt) Tree<int>;