DummyProductCache.h
Go to the documentation of this file.
1 #ifndef art_Framework_IO_Root_detail_DummyProductCache_h
2 #define art_Framework_IO_Root_detail_DummyProductCache_h
3 
5 
6 #include <map>
7 #include <memory>
8 #include <string>
9 
10 namespace art {
11  namespace detail {
12 
14  public:
15  EDProduct const* product(std::string const& wrappedName);
16 
17  private:
18  std::map<std::string, std::unique_ptr<EDProduct>> dummies_;
19  };
20 
21  } // namespace detail
22 } // namespace art
23 
24 #endif /* art_Framework_IO_Root_detail_DummyProductCache_h */
25 
26 // Local variables:
27 // mode: c++
28 // End:
std::string string
Definition: nybbler.cc:12
std::map< std::string, std::unique_ptr< EDProduct > > dummies_
EDProduct const * product(std::string const &wrappedName)