Files
Upsilon/apps/calculation/expression_field.h
Léa Saviot ad65ce2617 [apps/calculation] Removed overrided ExpressionField constructor.
Change-Id: Id893bb89c9f1282b7fc9e94acc0324a66c749a0c
2018-04-23 11:34:01 +02:00

18 lines
308 B
C++

#ifndef CALCULATION_EXPRESSION_FIELD_H
#define CALCULATION_EXPRESSION_FIELD_H
#include <escher.h>
namespace Calculation {
class ExpressionField : public ::ExpressionField {
public:
using ::ExpressionField::ExpressionField;
protected:
bool handleEvent(Ion::Events::Event event) override;
};
}
#endif