mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-20 14:20:39 +01:00
14 lines
352 B
C++
14 lines
352 B
C++
#ifndef APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
|
|
#define APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
|
|
|
|
#include <escher.h>
|
|
#include <poincare.h>
|
|
|
|
class ExpressionTextFieldDelegate : public TextFieldDelegate {
|
|
public:
|
|
virtual Context * evaluateContext() = 0;
|
|
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
|
|
};
|
|
|
|
#endif
|