All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
multimap.h
Go to the documentation of this file.
1 /* multimap.h
2  */
3 #ifndef MULTIMAP_H
4 #define MULTIMAP_H
5 
6 #include <map>
8 
9 namespace osl
10 {
11  namespace stl
12  {
13  template <typename Key, typename Value, typename Compare = std::less<Key> >
14  struct multimap
15  : public std::multimap<Key,Value,Compare,
16  pool_allocator<std::pair<const Key, Value> > >
17  {
18  };
19  } // namespace stl
20  using stl::multimap;
21 } // namespace stl
22 
23 #endif /* MULTIMAP_H */
24 // ;;; Local Variables:
25 // ;;; mode:c++
26 // ;;; c-basic-offset:2
27 // ;;; End: