Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

Filter.h

Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 #ifndef IO_FILTER_H
00008 #define IO_FILTER_H
00009 #include <iostream>
00010 namespace edm { class EventHandle; }
00011 
00012 namespace io {
00014   class Filter {
00015   public:
00016     Filter() { }
00017     virtual ~Filter() { }
00018     virtual bool operator()(edm::EventHandle& /*evt*/) {
00019       std::cerr << "io::Filter: Illegal to use default filter!\n";
00020       abort();
00021     };
00022   private:
00023   };
00024 }
00025 #endif // IOFILTER_H
00026 

Generated on Thu Sep 4 02:05:27 2008 for NOvA Offline by doxygen 1.3.5