swig/Examples/test-suite/cpp11_li_std_unordered_map.i
2018-11-28 16:51:53 -05:00

11 lines
270 B
OpenEdge ABL

/*
* A test of unordered_map containers.
*/
%module cpp11_li_std_unordered_map
%include <std_string.i>
%include <std_unordered_map.i>
%template(IntIntUnorderedMap) std::unordered_map<int, int>;
%template(StringIntUnorderedMap) std::unordered_map<std::string, int>;