LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
RootHandlers.h
Go to the documentation of this file.
1 #ifndef art_Framework_IO_Root_RootHandlers_h
2 #define art_Framework_IO_Root_RootHandlers_h
3 
4 namespace art {
5 
6  class RootHandlers {
7  public:
8  RootHandlers();
9  virtual ~RootHandlers();
10  void disableErrorHandler();
11  void enableErrorHandler();
12 
13  private:
14  virtual void disableErrorHandler_() = 0;
15  virtual void enableErrorHandler_() = 0;
16  }; // RootHandlers
17 
18 } // namespace art
19 
20 #endif /* art_Framework_IO_Root_RootHandlers_h */
21 
22 // Local Variables:
23 // mode: c++
24 // End:
virtual ~RootHandlers()
Definition: RootHandlers.cc:7
void disableErrorHandler()
Definition: RootHandlers.cc:9
virtual void enableErrorHandler_()=0
HLT enums.
void enableErrorHandler()
Definition: RootHandlers.cc:14
virtual void disableErrorHandler_()=0