Blame view

build4/epsilon-master/apps/statistics/calculation_selectable_table_view.h 383 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef APPS_STATISTICS_CALCULATION_SELECTABLE_TABLE_VIEW_H
  #define APPS_STATISTICS_CALCULATION_SELECTABLE_TABLE_VIEW_H
  
  #include <escher/selectable_table_view.h>
  
  namespace Statistics {
  
  class CalculationSelectableTableView : public SelectableTableView {
  public:
    using SelectableTableView::SelectableTableView;
    bool handleEvent(Ion::Events::Event event) override;
  };
  
  }
  
  #endif