Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SimpleGUI by
Events/EventSource.h
- Committer:
- duncanFrance
- Date:
- 2016-03-25
- Revision:
- 0:0a590815d51c
- Child:
- 1:48796b602c86
File content as of revision 0:0a590815d51c:
#ifndef SIMPLEGUI_EVENT_SOURCE_H #define SIMPLEGUI_EVENT_SOURCE_H #include "EventDispatcher.h" /** * Interface defining a class which sources events **/ class EventSource { public: virtual void setDispatcher(EventDispatcher* dispatcher) = 0; }; #endif