Go to the documentation of this file.00001
00002
00003 #ifndef MULTIMAP_H
00004 #define MULTIMAP_H
00005
00006 #include <map>
00007 #include "osl/stl/pool_allocator.h"
00008
00009 namespace osl
00010 {
00011 namespace stl
00012 {
00013 template <typename Key, typename Value, typename Compare = std::less<Key> >
00014 struct multimap
00015 : public std::multimap<Key,Value,Compare,
00016 pool_allocator<std::pair<const Key, Value> > >
00017 {
00018 };
00019 }
00020 using stl::multimap;
00021 }
00022
00023 #endif
00024
00025
00026
00027