update swig on windows
This commit is contained in:
17
winx64/bin/swigwin-4.0.0/Examples/python/std_map/example.h
Normal file
17
winx64/bin/swigwin-4.0.0/Examples/python/std_map/example.h
Normal file
@@ -0,0 +1,17 @@
|
||||
/* 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user