mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
17 lines
383 B
C++
17 lines
383 B
C++
#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
|