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