swig/Examples/python/std_map/example.h
Marcelo Matus a80ac86316 add std_map example
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8291 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2006-01-08 07:00:51 +00:00

17 lines
344 B
C++

/* File : example.h */
#include <map>
#include <string>
template<class Key, class Value>
std::map<Key,Value> half_map(const std::map<Key,Value>& v) {
typedef typename std::map<Key,Value>::const_iterator iter;
std::map<Key,Value> w;
for (iter i = v.begin(); i != v.end(); ++i) {
w[i->first] = (i->second)/2;
}
return w;
}