#ifndef MYGRATE_EVENTSOURCEBASE_H #define MYGRATE_EVENTSOURCEBASE_H #include "eventHandlerBase.h" namespace MyGrate { class EventSourceBase { public: virtual ~EventSourceBase() = default; virtual void readEvents(EventHandlerBase &) = 0; }; } #endif