/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/javascript/template/example.i
16 строк
332 B
Oliver Buchtala
Javascript examples.
27 сен 2013, 05:25
27 сен 2013, 05:25
48af60d
Код
Авторство
О чём код?
/* File : example.i */ %module example %{ #include "example.h" %} /* Let's just grab the original header file here */ %include "example.h" /* Now instantiate some specific template declarations */ %template(maxint) max<int>; %template(maxdouble) max<double>; %template(vecint) vector<int>; %template(vecdouble) vector<double>;