update swig on windows
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
%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>;
|
||||
|
||||
Reference in New Issue
Block a user