Files
Upsilon/apps/graph/values/value_cell.h
Émilie Feral d647178ccd [apps/graph/values] Delete temporary methods to convert float to string
Change-Id: I363d933b0adce80b4cde8800f5c94864b31fcefa
2016-10-14 12:06:09 +02:00

23 lines
360 B
C++

#ifndef GRAPH_VALUE_CELL_H
#define GRAPH_VALUE_CELL_H
#include <escher.h>
#include <poincare.h>
#include "../even_odd_cell.h"
namespace Graph {
class ValueCell : public EvenOddCell {
public:
ValueCell();
void setFloat(float f);
void drawRect(KDContext * ctx, KDRect rect) const override;
protected:
Float m_float;
char m_buffer[14];
};
}
#endif