Skip to content
Snippets Groups Projects
EventReader.hh 193 B
#pragma once

#include <string>
#include <vector>

class EventList;

class EventReader
{
public:
  EventReader();
  virtual ~EventReader();

  virtual bool fillAll(EventList& evtList) = 0; 
};