summaryrefslogtreecommitdiff
path: root/Examples/test-suite/ruby_li_std_speed.i
blob: bfb0b277661ff838c7afb5974cf181e7f4381ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// A speed test of the ruby stl
%module ruby_li_std_speed

%include <std_list.i>
%include <std_vector.i>
%include <std_deque.i>
%include <std_set.i>

%template(RbList)   std::list<swig::GC_VALUE>;
%template(RbVector) std::vector<swig::GC_VALUE>;
%template(RbDeque)  std::deque<swig::GC_VALUE>;
%template(RbSet)    std::set<swig::GC_VALUE>; 

%template(RbFloatList)   std::list<float>;
%template(RbFloatVector) std::vector<float>;
%template(RbFloatDeque)  std::deque<float>;
%template(RbFloatSet)    std::set<float>;