/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/python/smartptr/example.i
18 строк
295 B
Dave Beazley
The great merge
01 дек 2002, 01:01
01 дек 2002, 01:01
12a43ed
Код
Авторство
О чём код?
/* File : example.i */ %module example %{ #include "example.h" #include "smartptr.h" %} /* Let's just grab the original header file here */ %include "example.h" /* Grab smart pointer template */ %include "smartptr.h" /* Instantiate smart-pointers */ %template(ShapePtr) SmartPtr<Shape>;