import source from 1.3.40
[external/swig.git] / Examples / python / import_template / base.i
1 %module base
2 %{
3 #include "base.h"
4 %}
5
6 %include base.h
7 %template(intBase) Base<int>;