/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/ocaml/std_vector/example.i
15 строк
362 B
Art Yerkes
Examples updated.
25 окт 2003, 10:24
25 окт 2003, 10:24
b770c69
Код
Авторство
О чём код?
/* -*- C++ -*- */ /* File : example.i -- stolen from the guile std_vector example */ %module example %{ #include "example.h" %} %include stl.i /* instantiate the required template specializations */ %template(IntVector) std::vector<int>; %template(DoubleVector) std::vector<double>; /* Let's just grab the original header file here */ %include "example.h"