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.
Dependents: TouchScreenGUIDemo
Events/EventSource.h
- Committer:
- duncanFrance
- Date:
- 2016-03-25
- Revision:
- 1:48796b602c86
- Parent:
- 0:0a590815d51c
- Child:
- 12:63db16fea709
File content as of revision 1:48796b602c86:
#ifndef SIMPLEGUI_EVENT_SOURCE_H
#define SIMPLEGUI_EVENT_SOURCE_H
#include "EventDispatcher.h"
/**
* Interface defining a class which sources events
**/
class EventSource {
public:
EventSource(EventDispatcher* dispatcher) : _dispatcher(dispatcher) {}
protected:
EventDispatcher* _dispatcher;
};
#endif