Foundation classes for a basic GUI implementing simple widgets and events. (Fork for custom changes.)

Fork of SimpleGUI by Duncan McIntyre

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