1 2 3 4 5 6 7 8 9 10 11 12 13 14
#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