summaryrefslogtreecommitdiff
path: root/lib/eventSourceBase.h
blob: d511a3f96318a3a8c1e5a907bd14971ec9b9d0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MYGRATE_EVENTSOURCEBASE_H
#define MYGRATE_EVENTSOURCEBASE_H

#include "eventHandlerBase.h"

namespace MyGrate {
	class EventSourceBase {
	public:
		virtual void readEvents(EventHandlerBase &) = 0;
	};
}

#endif