Foundation classes for a basic GUI implementing simple widgets and events

Dependents:   TouchScreenGUIDemo

Events/EventHandlerFunction.h

Committer:
duncanFrance
Date:
2016-05-28
Revision:
18:d849f3ada858
Parent:
12:63db16fea709

File content as of revision 18:d849f3ada858:

#ifndef SIMPLEGUI_EVENT_HANDLER_FUNCTION_H
#define SIMPLEGUI_EVENT_HANDLER_FUNCTION_H

#include "Event.h"

typedef void (* EventHandlerFunction)(Event e);

#endif