Files
Upsilon/apps/graph/list/new_function_cell.h
Émilie Feral 81a4f11beb [escher] move even odd cell in escher
Change-Id: Ifb751ac5e8c738965cb358ea55cf7ca67459ffa5
2016-10-27 14:34:31 +02:00

22 lines
395 B
C++

#ifndef GRAPH_NEW_FUNCTION_CELL_H
#define GRAPH_NEW_FUNCTION_CELL_H
#include <escher.h>
namespace Graph {
class NewFunctionCell : public EvenOddCell {
public:
NewFunctionCell();
void reloadCell() override;
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
protected:
PointerTextView m_pointerTextView;
};
}
#endif