/* File : example.i */ %module example %{ #include "example.h" %} %include stl.i /* instantiate the required template specializations */ namespace std { %template(IntVector) vector; %template(DoubleVector) vector; } /* Let's just grab the original header file here */ %include "example.h"