swig/Examples/python/weave/example.i
Marcelo Matus becbb0cc81 test and update the weave example
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8210 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2006-01-04 15:55:19 +00:00

15 lines
218 B
OpenEdge ABL

%module(directors="1") example
%{
#include "example.h"
%}
%include "std_vector.i"
%director Foo;
%director Bar;
%include "example.h"
%template(VectorBar) std::vector<Bar*>;
%template(VectorFoo) std::vector<Foo*>;