/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/template_using.i
16 строк
296 B
Marcelo Matus
add template+using test
13 июн 2005, 20:41
13 июн 2005, 20:41
4633b86
Код
Авторство
О чём код?
%module template_using %inline { namespace foo { template<typename T> class Foo { }; template<typename T> T maxk(T a, T b) { return a > b ? a : b; } } using foo::maxk; } %template(maxint) foo::maxk<int>; %template(Foofloat) foo::Foo<float>; %template(maxfloat) maxk<float>;