From 3bf9df6b2785fa6d951086978a3e66f49427166a Mon Sep 17 00:00:00 2001 From: FluorescentCIAAfricanAmerican <0934gj3049fk@protonmail.com> Date: Wed, 22 Apr 2020 12:56:21 -0400 Subject: 1 --- devtools/swigwin-1.3.34/Lib/python/std_multiset.i | 44 +++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 devtools/swigwin-1.3.34/Lib/python/std_multiset.i (limited to 'devtools/swigwin-1.3.34/Lib/python/std_multiset.i') diff --git a/devtools/swigwin-1.3.34/Lib/python/std_multiset.i b/devtools/swigwin-1.3.34/Lib/python/std_multiset.i new file mode 100644 index 0000000..70f01f5 --- /dev/null +++ b/devtools/swigwin-1.3.34/Lib/python/std_multiset.i @@ -0,0 +1,44 @@ +/* + Multisets +*/ + +%include + +%fragment("StdMultisetTraits","header",fragment="StdSequenceTraits") +%{ + namespace swig { + template + inline void + assign(const PySeq& pyseq, std::multiset* seq) { +#ifdef SWIG_STD_NOINSERT_TEMPLATE_STL + typedef typename PySeq::value_type value_type; + typename PySeq::const_iterator it = pyseq.begin(); + for (;it != pyseq.end(); ++it) { + seq->insert(seq->end(),(value_type)(*it)); + } +#else + seq->insert(pyseq.begin(), pyseq.end()); +#endif + } + + template + struct traits_asptr > { + static int asptr(PyObject *obj, std::multiset **m) { + return traits_asptr_stdseq >::asptr(obj, m); + } + }; + + template + struct traits_from > { + static PyObject *from(const std::multiset& vec) { + return traits_from_stdseq >::from(vec); + } + }; + } +%} + +#define %swig_multiset_methods(Set...) %swig_set_methods(Set) + + + +%include -- cgit v1.2.3