mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
18 lines
308 B
C++
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
|