git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7826 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
289 B
OpenEdge ABL
17 lines
289 B
OpenEdge ABL
%module li_std_set
|
|
|
|
%include <std_string.i>
|
|
%include <std_set.i>
|
|
%include <std_multiset.i>
|
|
%include <std_vector.i>
|
|
|
|
%template(set_string) std::set<std::string>;
|
|
%template(set_int) std::multiset<int>;
|
|
|
|
|
|
%template(v_int) std::vector<int>;
|
|
|
|
|
|
|
|
|
|
%template(pyset) std::set<swig::PyObject_ptr>;
|