hash_ext.cpp

Go to the documentation of this file.
00001 #include "hash_ext.h"
00002 
00004 
00007 std::size_t hash_value(const SimObject::ID & id) {
00008         size_t seed = 0;
00009         hash_combine(seed, id.localid);
00010         hash_combine(seed, id.eng);
00011         hash_combine(seed, id.type);
00012         return seed;
00013 }

Generated on Wed Jul 9 16:34:37 2008 for PCSIM by  doxygen 1.5.5