other older tests. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9826 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
442 B
OpenEdge ABL
21 lines
442 B
OpenEdge ABL
/**
|
|
* @file li_std_speed.i
|
|
* @author gga
|
|
* @date Fri May 18 18:03:15 2007
|
|
*
|
|
* @brief A speed test of the ruby stl
|
|
*
|
|
*
|
|
*/
|
|
|
|
%module 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>;
|