Blame view

build6/epsilon-master/apps/calculation/expression_field.h 308 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  #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