Files
Upsilon/apps/graph/list/function_expression_view.h
Émilie Feral a29be020f5 [apps/graph] add a method in function expression view to mark a cell as dirty
Change-Id: Iee820055f36f18a31af5bd69097557e9718c6425
2016-10-04 12:26:30 +02:00

16 lines
304 B
C++

#ifndef GRAPH_FUNCTION_EXPRESSION_H
#define GRAPH_FUNCTION_EXPRESSION_H
#include <escher.h>
#include "function_cell.h"
class FunctionCell;
class FunctionExpressionView : public FunctionCell {
public:
FunctionExpressionView();
void drawRect(KDContext * ctx, KDRect rect) const override;
};
#endif