Files
Upsilon/apps/expression_text_field_delegate.h
Émilie Feral cc297374ba [escher] handle syntax error by making some apps text field delegate
Change-Id: I790148c321a5a2944b96cc283491a29260b2ed38
2016-11-04 16:17:30 +01:00

12 lines
287 B
C++

#ifndef APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
#define APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
#include <escher.h>
class ExpressionTextFieldDelegate : public TextFieldDelegate {
public:
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
};
#endif