EventHistoryGetter.h
Go to the documentation of this file.
1 #ifndef gallery_EventHistoryGetter_h
2 #define gallery_EventHistoryGetter_h
3 
5 
6 namespace art {
7  class History;
8  class ProcessHistory;
9 } // namespace art
10 
11 namespace gallery {
12 
13  class EventNavigator;
14 
16  public:
18  virtual ~EventHistoryGetter() = default;
19 
20  EventHistoryGetter(EventHistoryGetter const&) = delete;
21  EventHistoryGetter const& operator=(EventHistoryGetter const&) = delete;
22 
23  virtual art::ProcessHistoryID const& processHistoryID() const;
24  virtual art::ProcessHistory const& processHistory() const;
25  virtual art::History const& history() const;
26 
27  private:
29  };
30 } // namespace gallery
31 #endif /* gallery_EventHistoryGetter_h */
32 
33 // Local Variables:
34 // mode: c++
35 // End:
EventNavigator const * eventNavigator_