/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/enum_scope_template.i
19 строк
389 B
Dave Beazley
The great merge
01 дек 2002, 01:01
01 дек 2002, 01:01
12a43ed
Код
Авторство
О чём код?
%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>;