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

14 lines
323 B
C
Raw Normal View History

#ifndef EVENTHANDLER_H_
#define EVENTHANDLER_H_
class EventHandler {
public:
virtual ~EventHandler() {}
2007-12-25 03:27:03 +00:00
virtual bool buttonPress(unsigned int button) {return false;}
virtual bool buttonRelease(unsigned int button) {return false;}
2008-01-13 16:41:01 +00:00
virtual bool motion() {return false;}
};
#endif /*EVENTHANDLER_H_*/