/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/csharp/template/example.i
16 строк
332 B
William S Fulton
template example working, sorry forgot to commit it earlier
13 мар 2003, 01:48
13 мар 2003, 01:48
ae1a166
Код
Авторство
О чём код?
/* 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>;