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/EventListener.h
- Committer:
- elh
- Date:
- 2016-10-18
- Revision:
- 20:ef07d42ea062
- Parent:
- 18:d849f3ada858
File content as of revision 20:ef07d42ea062:
#ifndef SIMPLEGUI_EVENT_TARGET_H #define SIMPLEGUI_EVENT_TARGET_H // Need a forward declaration of EventListener here class EventListener; #include "EventHandler.h" class EventListener { public: virtual void handleEvent(Event e) =0; virtual void setEventHandler(EventHandler *handler) =0; virtual void unsetEventHandler(EventHandler* handler) =0; }; #endif