This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neofx-zoomedit/EventHandler.h
2008-01-13 16:41:01 +00:00

13 lines
323 B
C++

#ifndef EVENTHANDLER_H_
#define EVENTHANDLER_H_
class EventHandler {
public:
virtual ~EventHandler() {}
virtual bool buttonPress(unsigned int button) {return false;}
virtual bool buttonRelease(unsigned int button) {return false;}
virtual bool motion() {return false;}
};
#endif /*EVENTHANDLER_H_*/