Something went wrong on our end
-
Matthias Steinke authoreda5bb7b56
EventReader.hh 235 B
#ifndef EVENTREADER_HH
#define EVENTREADER_HH
#include <string>
#include <vector>
class EventList;
class EventReader
{
public:
EventReader();
virtual ~EventReader();
virtual bool fillAll(EventList& evtList) = 0;
};
#endif