This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/EventHandler.h

12 lines
202 B
C
Raw Normal View History

#ifndef EVENTHANDLER_H_
#define EVENTHANDLER_H_
class EventHandler {
public:
virtual ~EventHandler() {}
virtual bool buttonPress(unsigned int button) = 0;
};
#endif /*EVENTHANDLER_H_*/