summaryrefslogtreecommitdiff
path: root/Lib/scilab/std_multiset.i
blob: 67e17926fd1a593a5c8a1d6d5e17ca01b5040645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 *
 * C++ type : STL multiset
 * Scilab type : matrix (for primitive types) or list (for pointer types)
 *
*/

%fragment("StdMultisetTraits", "header", fragment="StdSequenceTraits")
%{
  namespace swig {
    template <class T>
    struct traits_asptr<std::multiset<T> >  {
      static int asptr(const SwigSciObject &obj, std::multiset<T> **multiset) {
        return traits_asptr_stdseq<std::multiset<T> >::asptr(obj, multiset);
      }
    };

    template <class T>
    struct traits_from<std::multiset<T> > {
      static SwigSciObject from(const std::multiset<T>& multiset) {
        return traits_from_stdseq<std::multiset<T> >::from(multiset);
      }
    };
  }
%}

#define %swig_multiset_methods(Set...) %swig_sequence_methods(Type)
#define %swig_multiset_methods_val(Type...) %swig_sequence_methods_val(Type);

%include <std/std_multiset.i>