8 #ifndef IMPBASE_BASE_MAP_H
9 #define IMPBASE_BASE_MAP_H
11 #include <IMP/base/base_config.h>
12 #include <boost/unordered_map.hpp>
15 IMPBASE_DEPRECATED_HEADER(2.2,
16 "Use boost::unordered_map directly or"
17 " base/set_map_macros.h.");
19 IMPBASE_BEGIN_NAMESPACE
26 template <
class Key,
class Data>
27 class map :
public boost::unordered_map<Key, Data> {
28 typedef boost::unordered_map<Key, Data> P;