Files
Upsilon/apps/graph/list/function_cell.h
Émilie Feral 96a9ac3a9c [apps/graph] Wrap in namespace Graph
Change-Id: I08b37438f42749ff86e105770cd5aa566f84a237
2016-10-14 11:47:19 +02:00

25 lines
404 B
C++

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