ServiceCache.h
Go to the documentation of this file.
1 #ifndef art_Framework_Services_Registry_detail_ServiceCache_h
2 #define art_Framework_Services_Registry_detail_ServiceCache_h
3 // vim: set sw=2 expandtab :
4 
7 
8 #include <map>
9 
10 namespace art::detail {
11  using ServiceCache = std::map<TypeID, ServiceCacheEntry>;
12 }
13 
14 #endif /* art_Framework_Services_Registry_detail_ServiceCache_h */
15 
16 // Local Variables:
17 // mode: c++
18 // End:
std::map< TypeID, ServiceCacheEntry > ServiceCache
Definition: ServiceCache.h:11