/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/tcl/std_vector/example.i
16 строк
317 B
Olly Betts
[Tcl] Prevent SWIG_Tcl_ConvertPtr from calling the unknown proc.
15 окт 2007, 06:02
15 окт 2007, 06:02
6fdeeaf
Код
Авторство
О чём код?
/* File : example.i */ %module example %{ #include "example.h" %} %include stl.i /* instantiate the required template specializations */ namespace std { %template(IntVector) vector<int>; %template(DoubleVector) vector<double>; } /* Let's just grab the original header file here */ %include "example.h"