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

20 lines
326 B
C++

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