Files
Upsilon/escher/include/escher/input_event_handler_delegate.h
2018-11-23 12:04:03 +01:00

15 lines
400 B
C++

#ifndef ESCHER_INPUT_EVENT_HANDLER_DELEGATE_H
#define ESCHER_INPUT_EVENT_HANDLER_DELEGATE_H
class InputEventHandler;
class Toolbox;
class NestedMenuController;
class InputEventHandlerDelegate {
public:
virtual Toolbox * toolboxForInputEventHandler(InputEventHandler * textInput) = 0;
virtual NestedMenuController * variableBoxForInputEventHandler(InputEventHandler * textInput) = 0;
};
#endif