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
EventSource.h
00001 #ifndef SIMPLEGUI_EVENT_SOURCE_H 00002 #define SIMPLEGUI_EVENT_SOURCE_H 00003 00004 #include "EventDispatcher.h" 00005 00006 /** 00007 * Interface defining a class which sources events 00008 **/ 00009 class EventSource { 00010 00011 public: 00012 00013 EventSource(EventDispatcher* dispatcher) : _eventDispatcher(dispatcher) {} 00014 00015 protected: 00016 00017 EventDispatcher* _eventDispatcher; 00018 }; 00019 00020 00021 #endif
Generated on Tue Jul 12 2022 22:27:14 by
