11 lines
270 B
OpenEdge ABL
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>;
|