Files
Upsilon/apps/graph/list/new_function_cell.h
Émilie Feral 34a614fbdf [apps/graph/list] Create a class for the button new function
Change-Id: Id9a03b9c7047ca709ee29298f10f7dde216e259a
2016-10-24 15:24:01 +02:00

23 lines
425 B
C++

#ifndef GRAPH_NEW_FUNCTION_CELL_H
#define GRAPH_NEW_FUNCTION_CELL_H
#include <escher.h>
#include "../even_odd_cell.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