summaryrefslogtreecommitdiff
path: root/lib/eventSourceBase.h
blob: 52545df9b3298a579712addb7f4751a461282514 (plain)
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