- Timestamp:
- Nov 13, 2009, 8:05:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/protlib/connectionmap.h
r5284 r6922 31 31 32 32 #include "assocdata.h" 33 #include <ext/hash_map> 33 #include <boost/unordered_map.hpp> 34 using boost::unordered_map; 34 35 35 36 namespace protlib { 37 38 36 39 37 40 /* @class ConnectionMap … … 62 65 size_t get_size() const; 63 66 private: 64 // this hash_map uses the standard hashfunction on the first entry, int67 // this unordered_map uses the standard hashfunction on the first entry, int 65 68 66 69 // only typedefs 67 typedef hash_map<socketfd_t ,AssocData*> ass2data_t;70 typedef unordered_map<socketfd_t ,AssocData*> ass2data_t; 68 71 typedef ass2data_t::const_iterator const_ass2data_it_t; 69 typedef hash_map<appladdress,AssocData*> addr2data_t;72 typedef unordered_map<appladdress,AssocData*> addr2data_t; 70 73 typedef addr2data_t::const_iterator const_addr2data_it_t; 71 74
Note:
See TracChangeset
for help on using the changeset viewer.