Files
Upsilon/apps/graph/list/function_cell.h
Émilie Feral c3524fa287 [apps/graph/list] make the class function cell inherits from even odd cell class
Change-Id: I8c786d76c7be726b2672713a5150dce5abb12061
2016-10-11 10:31:50 +02:00

21 lines
403 B
C++

#ifndef GRAPH_FUNCTION_CELL_H
#define GRAPH_FUNCTION_CELL_H
#include <escher.h>
#include "../function.h"
#include "../even_odd_cell.h"
class FunctionCell : public EvenOddCell {
public:
FunctionCell();
void setFunction(Graph::Function * f);
Graph::Function * function();
static constexpr KDColor k_desactiveTextColor = KDColor(0x646464);
protected:
Graph::Function * m_function;
};
#endif