- Timestamp:
- Nov 13, 2009, 8:05:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/protlib/timer_module.h
r5284 r6922 37 37 #define _PROTLIB__TIMER_MODULE_H 38 38 39 #include < ext/hash_map>39 #include <boost/unordered_map.hpp> 40 40 41 41 #include "messages.h" … … 43 43 #include "llhashers.h" 44 44 #include "timer.h" 45 46 using boost::unordered_map; 45 47 46 48 namespace protlib { … … 248 250 void clear(bool dispose = true); 249 251 private: 250 typedef hash_map<message::id_t,timer_id_t> mid2tid_t;252 typedef unordered_map<message::id_t,timer_id_t> mid2tid_t; 251 253 typedef mid2tid_t::const_iterator const_mid2tid_it_t; 252 typedef hash_map<timer_id_t,message::id_t> tid2mid_t;254 typedef unordered_map<timer_id_t,message::id_t> tid2mid_t; 253 255 typedef tid2mid_t::const_iterator const_tid2mid_it_t; 254 typedef hash_map<timer_id_t,TimerMsg*> tid2msg_t;256 typedef unordered_map<timer_id_t,TimerMsg*> tid2msg_t; 255 257 typedef tid2msg_t::const_iterator const_tid2msg_it_t; 256 258 mid2tid_t mid2tid;
Note:
See TracChangeset
for help on using the changeset viewer.