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

Fork of SimpleGUI by Duncan McIntyre

Events/EventHandlerFunction.h

Committer:
elh
Date:
2016-10-18
Revision:
20:ef07d42ea062
Parent:
12:63db16fea709

File content as of revision 20:ef07d42ea062:

#ifndef SIMPLEGUI_EVENT_HANDLER_FUNCTION_H
#define SIMPLEGUI_EVENT_HANDLER_FUNCTION_H

#include "Event.h"

typedef void (* EventHandlerFunction)(Event e);

#endif