%module fir %include /* * List conversion * * SWIG knows how to turn std::vector func() into a function that returns a * Python list. We do need to tell it about all types with %template, * however. */ %include %template(vectord) std::vector; %{ #include "fir++.h" %} %include "fir++.h" // vim: ts=4:sw=4