/tags/rel-1-3-25/SWIG/Examples/python/weave/example.i
# · Swig · 13 lines · 9 code · 4 blank · 0 comment · 0 complexity · cde2cfe9fefc5b45b7b0c68059451fca MD5 · raw file
- %module(directors="1") example
- %feature("director");
- %{
- #include "example.h"
- %}
- %include "std_vector.i"
- %include "example.h"
- %template(VectorBar) std::vector<Bar*>;
- %template(VectorFoo) std::vector<Foo*>;